diff --git a/README.md b/README.md new file mode 100644 index 0000000..ecd4199 --- /dev/null +++ b/README.md @@ -0,0 +1,16 @@ +# nu + +A new Flutter project. + +## Getting Started + +This project is a starting point for a Flutter application. + +A few resources to get you started if this is your first Flutter project: + +- [Lab: Write your first Flutter app](https://flutter.dev/docs/get-started/codelab) +- [Cookbook: Useful Flutter samples](https://flutter.dev/docs/cookbook) + +For help getting started with Flutter, view our +[online documentation](https://flutter.dev/docs), which offers tutorials, +samples, guidance on mobile development, and a full API reference. diff --git a/analysis_options.yaml b/analysis_options.yaml new file mode 100644 index 0000000..61b6c4d --- /dev/null +++ b/analysis_options.yaml @@ -0,0 +1,29 @@ +# This file configures the analyzer, which statically analyzes Dart code to +# check for errors, warnings, and lints. +# +# The issues identified by the analyzer are surfaced in the UI of Dart-enabled +# IDEs (https://dart.dev/tools#ides-and-editors). The analyzer can also be +# invoked from the command line by running `flutter analyze`. + +# The following line activates a set of recommended lints for Flutter apps, +# packages, and plugins designed to encourage good coding practices. +include: package:flutter_lints/flutter.yaml + +linter: + # The lint rules applied to this project can be customized in the + # section below to disable rules from the `package:flutter_lints/flutter.yaml` + # included above or to enable additional rules. A list of all available lints + # and their documentation is published at + # https://dart-lang.github.io/linter/lints/index.html. + # + # Instead of disabling a lint rule for the entire project in the + # section below, it can also be suppressed for a single line of code + # or a specific dart file by using the `// ignore: name_of_lint` and + # `// ignore_for_file: name_of_lint` syntax on the line or in the file + # producing the lint. + rules: + # avoid_print: false # Uncomment to disable the `avoid_print` rule + # prefer_single_quotes: true # Uncomment to enable the `prefer_single_quotes` rule + +# Additional information about this file can be found at +# https://dart.dev/guides/language/analysis-options diff --git a/android/.gitignore b/android/.gitignore new file mode 100644 index 0000000..6f56801 --- /dev/null +++ b/android/.gitignore @@ -0,0 +1,13 @@ +gradle-wrapper.jar +/.gradle +/captures/ +/gradlew +/gradlew.bat +/local.properties +GeneratedPluginRegistrant.java + +# Remember to never publicly share your keystore. +# See https://flutter.dev/docs/deployment/android#reference-the-keystore-from-the-app +key.properties +**/*.keystore +**/*.jks diff --git a/android/app/build.gradle b/android/app/build.gradle new file mode 100644 index 0000000..7ef32d2 --- /dev/null +++ b/android/app/build.gradle @@ -0,0 +1,68 @@ +def localProperties = new Properties() +def localPropertiesFile = rootProject.file('local.properties') +if (localPropertiesFile.exists()) { + localPropertiesFile.withReader('UTF-8') { reader -> + localProperties.load(reader) + } +} + +def flutterRoot = localProperties.getProperty('flutter.sdk') +if (flutterRoot == null) { + throw new GradleException("Flutter SDK not found. Define location with flutter.sdk in the local.properties file.") +} + +def flutterVersionCode = localProperties.getProperty('flutter.versionCode') +if (flutterVersionCode == null) { + flutterVersionCode = '1' +} + +def flutterVersionName = localProperties.getProperty('flutter.versionName') +if (flutterVersionName == null) { + flutterVersionName = '1.0' +} + +apply plugin: 'com.android.application' +apply plugin: 'kotlin-android' +apply from: "$flutterRoot/packages/flutter_tools/gradle/flutter.gradle" + +android { + compileSdkVersion flutter.compileSdkVersion + + compileOptions { + sourceCompatibility JavaVersion.VERSION_1_8 + targetCompatibility JavaVersion.VERSION_1_8 + } + + kotlinOptions { + jvmTarget = '1.8' + } + + sourceSets { + main.java.srcDirs += 'src/main/kotlin' + } + + defaultConfig { + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). + applicationId "com.example.nu" + minSdkVersion flutter.minSdkVersion + targetSdkVersion flutter.targetSdkVersion + versionCode flutterVersionCode.toInteger() + versionName flutterVersionName + } + + buildTypes { + release { + // TODO: Add your own signing config for the release build. + // Signing with the debug keys for now, so `flutter run --release` works. + signingConfig signingConfigs.debug + } + } +} + +flutter { + source '../..' +} + +dependencies { + implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version" +} diff --git a/android/app/src/debug/AndroidManifest.xml b/android/app/src/debug/AndroidManifest.xml new file mode 100644 index 0000000..51fd045 --- /dev/null +++ b/android/app/src/debug/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml new file mode 100644 index 0000000..f2420f8 --- /dev/null +++ b/android/app/src/main/AndroidManifest.xml @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + diff --git a/android/app/src/main/kotlin/com/example/nu/MainActivity.kt b/android/app/src/main/kotlin/com/example/nu/MainActivity.kt new file mode 100644 index 0000000..58459f9 --- /dev/null +++ b/android/app/src/main/kotlin/com/example/nu/MainActivity.kt @@ -0,0 +1,6 @@ +package com.example.nu + +import io.flutter.embedding.android.FlutterActivity + +class MainActivity: FlutterActivity() { +} diff --git a/android/app/src/main/res/drawable-v21/launch_background.xml b/android/app/src/main/res/drawable-v21/launch_background.xml new file mode 100644 index 0000000..f74085f --- /dev/null +++ b/android/app/src/main/res/drawable-v21/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/drawable/launch_background.xml b/android/app/src/main/res/drawable/launch_background.xml new file mode 100644 index 0000000..304732f --- /dev/null +++ b/android/app/src/main/res/drawable/launch_background.xml @@ -0,0 +1,12 @@ + + + + + + + + diff --git a/android/app/src/main/res/mipmap-hdpi/ic_launcher.png b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png new file mode 100644 index 0000000..db77bb4 Binary files /dev/null and b/android/app/src/main/res/mipmap-hdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-mdpi/ic_launcher.png b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png new file mode 100644 index 0000000..17987b7 Binary files /dev/null and b/android/app/src/main/res/mipmap-mdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png new file mode 100644 index 0000000..09d4391 Binary files /dev/null and b/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png new file mode 100644 index 0000000..d5f1c8d Binary files /dev/null and b/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png new file mode 100644 index 0000000..4d6372e Binary files /dev/null and b/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png differ diff --git a/android/app/src/main/res/values-night/styles.xml b/android/app/src/main/res/values-night/styles.xml new file mode 100644 index 0000000..3db14bb --- /dev/null +++ b/android/app/src/main/res/values-night/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/main/res/values/styles.xml b/android/app/src/main/res/values/styles.xml new file mode 100644 index 0000000..d460d1e --- /dev/null +++ b/android/app/src/main/res/values/styles.xml @@ -0,0 +1,18 @@ + + + + + + + diff --git a/android/app/src/profile/AndroidManifest.xml b/android/app/src/profile/AndroidManifest.xml new file mode 100644 index 0000000..51fd045 --- /dev/null +++ b/android/app/src/profile/AndroidManifest.xml @@ -0,0 +1,7 @@ + + + + diff --git a/android/build.gradle b/android/build.gradle new file mode 100644 index 0000000..24047dc --- /dev/null +++ b/android/build.gradle @@ -0,0 +1,31 @@ +buildscript { + ext.kotlin_version = '1.3.50' + repositories { + google() + mavenCentral() + } + + dependencies { + classpath 'com.android.tools.build:gradle:4.1.0' + classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version" + } +} + +allprojects { + repositories { + google() + mavenCentral() + } +} + +rootProject.buildDir = '../build' +subprojects { + project.buildDir = "${rootProject.buildDir}/${project.name}" +} +subprojects { + project.evaluationDependsOn(':app') +} + +task clean(type: Delete) { + delete rootProject.buildDir +} diff --git a/android/gradle.properties b/android/gradle.properties new file mode 100644 index 0000000..94adc3a --- /dev/null +++ b/android/gradle.properties @@ -0,0 +1,3 @@ +org.gradle.jvmargs=-Xmx1536M +android.useAndroidX=true +android.enableJetifier=true diff --git a/android/gradle/wrapper/gradle-wrapper.properties b/android/gradle/wrapper/gradle-wrapper.properties new file mode 100644 index 0000000..bc6a58a --- /dev/null +++ b/android/gradle/wrapper/gradle-wrapper.properties @@ -0,0 +1,6 @@ +#Fri Jun 23 08:50:38 CEST 2017 +distributionBase=GRADLE_USER_HOME +distributionPath=wrapper/dists +zipStoreBase=GRADLE_USER_HOME +zipStorePath=wrapper/dists +distributionUrl=https\://services.gradle.org/distributions/gradle-6.7-all.zip diff --git a/android/nu_android.iml b/android/nu_android.iml new file mode 100644 index 0000000..1899969 --- /dev/null +++ b/android/nu_android.iml @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/android/settings.gradle b/android/settings.gradle new file mode 100644 index 0000000..44e62bc --- /dev/null +++ b/android/settings.gradle @@ -0,0 +1,11 @@ +include ':app' + +def localPropertiesFile = new File(rootProject.projectDir, "local.properties") +def properties = new Properties() + +assert localPropertiesFile.exists() +localPropertiesFile.withReader("UTF-8") { reader -> properties.load(reader) } + +def flutterSdkPath = properties.getProperty("flutter.sdk") +assert flutterSdkPath != null, "flutter.sdk not set in local.properties" +apply from: "$flutterSdkPath/packages/flutter_tools/gradle/app_plugin_loader.gradle" diff --git a/assets.zip b/assets.zip new file mode 100644 index 0000000..e26eddd Binary files /dev/null and b/assets.zip differ diff --git a/ios/.gitignore b/ios/.gitignore new file mode 100644 index 0000000..7a7f987 --- /dev/null +++ b/ios/.gitignore @@ -0,0 +1,34 @@ +**/dgph +*.mode1v3 +*.mode2v3 +*.moved-aside +*.pbxuser +*.perspectivev3 +**/*sync/ +.sconsign.dblite +.tags* +**/.vagrant/ +**/DerivedData/ +Icon? +**/Pods/ +**/.symlinks/ +profile +xcuserdata +**/.generated/ +Flutter/App.framework +Flutter/Flutter.framework +Flutter/Flutter.podspec +Flutter/Generated.xcconfig +Flutter/ephemeral/ +Flutter/app.flx +Flutter/app.zip +Flutter/flutter_assets/ +Flutter/flutter_export_environment.sh +ServiceDefinitions.json +Runner/GeneratedPluginRegistrant.* + +# Exceptions to above rules. +!default.mode1v3 +!default.mode2v3 +!default.pbxuser +!default.perspectivev3 diff --git a/ios/Flutter/AppFrameworkInfo.plist b/ios/Flutter/AppFrameworkInfo.plist new file mode 100644 index 0000000..8d4492f --- /dev/null +++ b/ios/Flutter/AppFrameworkInfo.plist @@ -0,0 +1,26 @@ + + + + + CFBundleDevelopmentRegion + en + CFBundleExecutable + App + CFBundleIdentifier + io.flutter.flutter.app + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + App + CFBundlePackageType + FMWK + CFBundleShortVersionString + 1.0 + CFBundleSignature + ???? + CFBundleVersion + 1.0 + MinimumOSVersion + 9.0 + + diff --git a/ios/Flutter/Debug.xcconfig b/ios/Flutter/Debug.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Debug.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Flutter/Release.xcconfig b/ios/Flutter/Release.xcconfig new file mode 100644 index 0000000..592ceee --- /dev/null +++ b/ios/Flutter/Release.xcconfig @@ -0,0 +1 @@ +#include "Generated.xcconfig" diff --git a/ios/Runner.xcodeproj/project.pbxproj b/ios/Runner.xcodeproj/project.pbxproj new file mode 100644 index 0000000..64709c8 --- /dev/null +++ b/ios/Runner.xcodeproj/project.pbxproj @@ -0,0 +1,481 @@ +// !$*UTF8*$! +{ + archiveVersion = 1; + classes = { + }; + objectVersion = 50; + objects = { + +/* Begin PBXBuildFile section */ + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */ = {isa = PBXBuildFile; fileRef = 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */; }; + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */ = {isa = PBXBuildFile; fileRef = 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */; }; + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */ = {isa = PBXBuildFile; fileRef = 74858FAE1ED2DC5600515810 /* AppDelegate.swift */; }; + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FA1CF9000F007C117D /* Main.storyboard */; }; + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FD1CF9000F007C117D /* Assets.xcassets */; }; + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */; }; +/* End PBXBuildFile section */ + +/* Begin PBXCopyFilesBuildPhase section */ + 9705A1C41CF9048500538489 /* Embed Frameworks */ = { + isa = PBXCopyFilesBuildPhase; + buildActionMask = 2147483647; + dstPath = ""; + dstSubfolderSpec = 10; + files = ( + ); + name = "Embed Frameworks"; + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXCopyFilesBuildPhase section */ + +/* Begin PBXFileReference section */ + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = GeneratedPluginRegistrant.h; sourceTree = ""; }; + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = GeneratedPluginRegistrant.m; sourceTree = ""; }; + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.plist.xml; name = AppFrameworkInfo.plist; path = Flutter/AppFrameworkInfo.plist; sourceTree = ""; }; + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; path = "Runner-Bridging-Header.h"; sourceTree = ""; }; + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = ""; }; + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */ = {isa = PBXFileReference; lastKnownFileType = text.xcconfig; name = Release.xcconfig; path = Flutter/Release.xcconfig; sourceTree = ""; }; + 9740EEB21CF90195004384FC /* Debug.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Debug.xcconfig; path = Flutter/Debug.xcconfig; sourceTree = ""; }; + 9740EEB31CF90195004384FC /* Generated.xcconfig */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = text.xcconfig; name = Generated.xcconfig; path = Flutter/Generated.xcconfig; sourceTree = ""; }; + 97C146EE1CF9000F007C117D /* Runner.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = Runner.app; sourceTree = BUILT_PRODUCTS_DIR; }; + 97C146FB1CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/Main.storyboard; sourceTree = ""; }; + 97C146FD1CF9000F007C117D /* Assets.xcassets */ = {isa = PBXFileReference; lastKnownFileType = folder.assetcatalog; path = Assets.xcassets; sourceTree = ""; }; + 97C147001CF9000F007C117D /* Base */ = {isa = PBXFileReference; lastKnownFileType = file.storyboard; name = Base; path = Base.lproj/LaunchScreen.storyboard; sourceTree = ""; }; + 97C147021CF9000F007C117D /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = ""; }; +/* End PBXFileReference section */ + +/* Begin PBXFrameworksBuildPhase section */ + 97C146EB1CF9000F007C117D /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXFrameworksBuildPhase section */ + +/* Begin PBXGroup section */ + 9740EEB11CF90186004384FC /* Flutter */ = { + isa = PBXGroup; + children = ( + 3B3967151E833CAA004F5970 /* AppFrameworkInfo.plist */, + 9740EEB21CF90195004384FC /* Debug.xcconfig */, + 7AFA3C8E1D35360C0083082E /* Release.xcconfig */, + 9740EEB31CF90195004384FC /* Generated.xcconfig */, + ); + name = Flutter; + sourceTree = ""; + }; + 97C146E51CF9000F007C117D = { + isa = PBXGroup; + children = ( + 9740EEB11CF90186004384FC /* Flutter */, + 97C146F01CF9000F007C117D /* Runner */, + 97C146EF1CF9000F007C117D /* Products */, + ); + sourceTree = ""; + }; + 97C146EF1CF9000F007C117D /* Products */ = { + isa = PBXGroup; + children = ( + 97C146EE1CF9000F007C117D /* Runner.app */, + ); + name = Products; + sourceTree = ""; + }; + 97C146F01CF9000F007C117D /* Runner */ = { + isa = PBXGroup; + children = ( + 97C146FA1CF9000F007C117D /* Main.storyboard */, + 97C146FD1CF9000F007C117D /* Assets.xcassets */, + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */, + 97C147021CF9000F007C117D /* Info.plist */, + 1498D2321E8E86230040F4C2 /* GeneratedPluginRegistrant.h */, + 1498D2331E8E89220040F4C2 /* GeneratedPluginRegistrant.m */, + 74858FAE1ED2DC5600515810 /* AppDelegate.swift */, + 74858FAD1ED2DC5600515810 /* Runner-Bridging-Header.h */, + ); + path = Runner; + sourceTree = ""; + }; +/* End PBXGroup section */ + +/* Begin PBXNativeTarget section */ + 97C146ED1CF9000F007C117D /* Runner */ = { + isa = PBXNativeTarget; + buildConfigurationList = 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */; + buildPhases = ( + 9740EEB61CF901F6004384FC /* Run Script */, + 97C146EA1CF9000F007C117D /* Sources */, + 97C146EB1CF9000F007C117D /* Frameworks */, + 97C146EC1CF9000F007C117D /* Resources */, + 9705A1C41CF9048500538489 /* Embed Frameworks */, + 3B06AD1E1E4923F5004D2608 /* Thin Binary */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = Runner; + productName = Runner; + productReference = 97C146EE1CF9000F007C117D /* Runner.app */; + productType = "com.apple.product-type.application"; + }; +/* End PBXNativeTarget section */ + +/* Begin PBXProject section */ + 97C146E61CF9000F007C117D /* Project object */ = { + isa = PBXProject; + attributes = { + LastUpgradeCheck = 1300; + ORGANIZATIONNAME = ""; + TargetAttributes = { + 97C146ED1CF9000F007C117D = { + CreatedOnToolsVersion = 7.3.1; + LastSwiftMigration = 1100; + }; + }; + }; + buildConfigurationList = 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */; + compatibilityVersion = "Xcode 9.3"; + developmentRegion = en; + hasScannedForEncodings = 0; + knownRegions = ( + en, + Base, + ); + mainGroup = 97C146E51CF9000F007C117D; + productRefGroup = 97C146EF1CF9000F007C117D /* Products */; + projectDirPath = ""; + projectRoot = ""; + targets = ( + 97C146ED1CF9000F007C117D /* Runner */, + ); + }; +/* End PBXProject section */ + +/* Begin PBXResourcesBuildPhase section */ + 97C146EC1CF9000F007C117D /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 97C147011CF9000F007C117D /* LaunchScreen.storyboard in Resources */, + 3B3967161E833CAA004F5970 /* AppFrameworkInfo.plist in Resources */, + 97C146FE1CF9000F007C117D /* Assets.xcassets in Resources */, + 97C146FC1CF9000F007C117D /* Main.storyboard in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXResourcesBuildPhase section */ + +/* Begin PBXShellScriptBuildPhase section */ + 3B06AD1E1E4923F5004D2608 /* Thin Binary */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Thin Binary"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" embed_and_thin"; + }; + 9740EEB61CF901F6004384FC /* Run Script */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputPaths = ( + ); + name = "Run Script"; + outputPaths = ( + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "/bin/sh \"$FLUTTER_ROOT/packages/flutter_tools/bin/xcode_backend.sh\" build"; + }; +/* End PBXShellScriptBuildPhase section */ + +/* Begin PBXSourcesBuildPhase section */ + 97C146EA1CF9000F007C117D /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 74858FAF1ED2DC5600515810 /* AppDelegate.swift in Sources */, + 1498D2341E8E89220040F4C2 /* GeneratedPluginRegistrant.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; +/* End PBXSourcesBuildPhase section */ + +/* Begin PBXVariantGroup section */ + 97C146FA1CF9000F007C117D /* Main.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C146FB1CF9000F007C117D /* Base */, + ); + name = Main.storyboard; + sourceTree = ""; + }; + 97C146FF1CF9000F007C117D /* LaunchScreen.storyboard */ = { + isa = PBXVariantGroup; + children = ( + 97C147001CF9000F007C117D /* Base */, + ); + name = LaunchScreen.storyboard; + sourceTree = ""; + }; +/* End PBXVariantGroup section */ + +/* Begin XCBuildConfiguration section */ + 249021D3217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Profile; + }; + 249021D4217E4FDB00AE95B9 /* Profile */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.nu; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Profile; + }; + 97C147031CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = dwarf; + ENABLE_STRICT_OBJC_MSGSEND = YES; + ENABLE_TESTABILITY = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_DYNAMIC_NO_PIC = NO; + GCC_NO_COMMON_BLOCKS = YES; + GCC_OPTIMIZATION_LEVEL = 0; + GCC_PREPROCESSOR_DEFINITIONS = ( + "DEBUG=1", + "$(inherited)", + ); + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = YES; + ONLY_ACTIVE_ARCH = YES; + SDKROOT = iphoneos; + TARGETED_DEVICE_FAMILY = "1,2"; + }; + name = Debug; + }; + 97C147041CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ALWAYS_SEARCH_USER_PATHS = NO; + CLANG_ANALYZER_NONNULL = YES; + CLANG_CXX_LANGUAGE_STANDARD = "gnu++0x"; + CLANG_CXX_LIBRARY = "libc++"; + CLANG_ENABLE_MODULES = YES; + CLANG_ENABLE_OBJC_ARC = YES; + CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING = YES; + CLANG_WARN_BOOL_CONVERSION = YES; + CLANG_WARN_COMMA = YES; + CLANG_WARN_CONSTANT_CONVERSION = YES; + CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS = YES; + CLANG_WARN_DIRECT_OBJC_ISA_USAGE = YES_ERROR; + CLANG_WARN_EMPTY_BODY = YES; + CLANG_WARN_ENUM_CONVERSION = YES; + CLANG_WARN_INFINITE_RECURSION = YES; + CLANG_WARN_INT_CONVERSION = YES; + CLANG_WARN_NON_LITERAL_NULL_CONVERSION = YES; + CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF = YES; + CLANG_WARN_OBJC_LITERAL_CONVERSION = YES; + CLANG_WARN_OBJC_ROOT_CLASS = YES_ERROR; + CLANG_WARN_RANGE_LOOP_ANALYSIS = YES; + CLANG_WARN_STRICT_PROTOTYPES = YES; + CLANG_WARN_SUSPICIOUS_MOVE = YES; + CLANG_WARN_UNREACHABLE_CODE = YES; + CLANG_WARN__DUPLICATE_METHOD_MATCH = YES; + "CODE_SIGN_IDENTITY[sdk=iphoneos*]" = "iPhone Developer"; + COPY_PHASE_STRIP = NO; + DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym"; + ENABLE_NS_ASSERTIONS = NO; + ENABLE_STRICT_OBJC_MSGSEND = YES; + GCC_C_LANGUAGE_STANDARD = gnu99; + GCC_NO_COMMON_BLOCKS = YES; + GCC_WARN_64_TO_32_BIT_CONVERSION = YES; + GCC_WARN_ABOUT_RETURN_TYPE = YES_ERROR; + GCC_WARN_UNDECLARED_SELECTOR = YES; + GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; + GCC_WARN_UNUSED_FUNCTION = YES; + GCC_WARN_UNUSED_VARIABLE = YES; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; + MTL_ENABLE_DEBUG_INFO = NO; + SDKROOT = iphoneos; + SUPPORTED_PLATFORMS = iphoneos; + SWIFT_COMPILATION_MODE = wholemodule; + SWIFT_OPTIMIZATION_LEVEL = "-O"; + TARGETED_DEVICE_FAMILY = "1,2"; + VALIDATE_PRODUCT = YES; + }; + name = Release; + }; + 97C147061CF9000F007C117D /* Debug */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 9740EEB21CF90195004384FC /* Debug.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.nu; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_OPTIMIZATION_LEVEL = "-Onone"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Debug; + }; + 97C147071CF9000F007C117D /* Release */ = { + isa = XCBuildConfiguration; + baseConfigurationReference = 7AFA3C8E1D35360C0083082E /* Release.xcconfig */; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + CLANG_ENABLE_MODULES = YES; + CURRENT_PROJECT_VERSION = "$(FLUTTER_BUILD_NUMBER)"; + ENABLE_BITCODE = NO; + INFOPLIST_FILE = Runner/Info.plist; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = com.example.nu; + PRODUCT_NAME = "$(TARGET_NAME)"; + SWIFT_OBJC_BRIDGING_HEADER = "Runner/Runner-Bridging-Header.h"; + SWIFT_VERSION = 5.0; + VERSIONING_SYSTEM = "apple-generic"; + }; + name = Release; + }; +/* End XCBuildConfiguration section */ + +/* Begin XCConfigurationList section */ + 97C146E91CF9000F007C117D /* Build configuration list for PBXProject "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147031CF9000F007C117D /* Debug */, + 97C147041CF9000F007C117D /* Release */, + 249021D3217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; + 97C147051CF9000F007C117D /* Build configuration list for PBXNativeTarget "Runner" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 97C147061CF9000F007C117D /* Debug */, + 97C147071CF9000F007C117D /* Release */, + 249021D4217E4FDB00AE95B9 /* Profile */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; +/* End XCConfigurationList section */ + }; + rootObject = 97C146E61CF9000F007C117D /* Project object */; +} diff --git a/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcodeproj/project.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme new file mode 100644 index 0000000..c87d15a --- /dev/null +++ b/ios/Runner.xcodeproj/xcshareddata/xcschemes/Runner.xcscheme @@ -0,0 +1,87 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner.xcworkspace/contents.xcworkspacedata b/ios/Runner.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..1d526a1 --- /dev/null +++ b/ios/Runner.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings new file mode 100644 index 0000000..f9b0d7c --- /dev/null +++ b/ios/Runner.xcworkspace/xcshareddata/WorkspaceSettings.xcsettings @@ -0,0 +1,8 @@ + + + + + PreviewsEnabled + + + diff --git a/ios/Runner/AppDelegate.swift b/ios/Runner/AppDelegate.swift new file mode 100644 index 0000000..70693e4 --- /dev/null +++ b/ios/Runner/AppDelegate.swift @@ -0,0 +1,13 @@ +import UIKit +import Flutter + +@UIApplicationMain +@objc class AppDelegate: FlutterAppDelegate { + override func application( + _ application: UIApplication, + didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]? + ) -> Bool { + GeneratedPluginRegistrant.register(with: self) + return super.application(application, didFinishLaunchingWithOptions: launchOptions) + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json new file mode 100644 index 0000000..d36b1fa --- /dev/null +++ b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Contents.json @@ -0,0 +1,122 @@ +{ + "images" : [ + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "20x20", + "idiom" : "iphone", + "filename" : "Icon-App-20x20@3x.png", + "scale" : "3x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "iphone", + "filename" : "Icon-App-29x29@3x.png", + "scale" : "3x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "iphone", + "filename" : "Icon-App-40x40@3x.png", + "scale" : "3x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@2x.png", + "scale" : "2x" + }, + { + "size" : "60x60", + "idiom" : "iphone", + "filename" : "Icon-App-60x60@3x.png", + "scale" : "3x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@1x.png", + "scale" : "1x" + }, + { + "size" : "20x20", + "idiom" : "ipad", + "filename" : "Icon-App-20x20@2x.png", + "scale" : "2x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@1x.png", + "scale" : "1x" + }, + { + "size" : "29x29", + "idiom" : "ipad", + "filename" : "Icon-App-29x29@2x.png", + "scale" : "2x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@1x.png", + "scale" : "1x" + }, + { + "size" : "40x40", + "idiom" : "ipad", + "filename" : "Icon-App-40x40@2x.png", + "scale" : "2x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@1x.png", + "scale" : "1x" + }, + { + "size" : "76x76", + "idiom" : "ipad", + "filename" : "Icon-App-76x76@2x.png", + "scale" : "2x" + }, + { + "size" : "83.5x83.5", + "idiom" : "ipad", + "filename" : "Icon-App-83.5x83.5@2x.png", + "scale" : "2x" + }, + { + "size" : "1024x1024", + "idiom" : "ios-marketing", + "filename" : "Icon-App-1024x1024@1x.png", + "scale" : "1x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png new file mode 100644 index 0000000..dc9ada4 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-1024x1024@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png new file mode 100644 index 0000000..28c6bf0 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png new file mode 100644 index 0000000..f091b6b Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-20x20@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png new file mode 100644 index 0000000..4cde121 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png new file mode 100644 index 0000000..d0ef06e Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png new file mode 100644 index 0000000..dcdc230 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-29x29@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png new file mode 100644 index 0000000..2ccbfd9 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png new file mode 100644 index 0000000..c8f9ed8 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-40x40@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png new file mode 100644 index 0000000..a6d6b86 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png new file mode 100644 index 0000000..75b2d16 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-60x60@3x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png new file mode 100644 index 0000000..c4df70d Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@1x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png new file mode 100644 index 0000000..6a84f41 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-76x76@2x.png differ diff --git a/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png new file mode 100644 index 0000000..d0e1f58 Binary files /dev/null and b/ios/Runner/Assets.xcassets/AppIcon.appiconset/Icon-App-83.5x83.5@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json new file mode 100644 index 0000000..0bedcf2 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/Contents.json @@ -0,0 +1,23 @@ +{ + "images" : [ + { + "idiom" : "universal", + "filename" : "LaunchImage.png", + "scale" : "1x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@2x.png", + "scale" : "2x" + }, + { + "idiom" : "universal", + "filename" : "LaunchImage@3x.png", + "scale" : "3x" + } + ], + "info" : { + "version" : 1, + "author" : "xcode" + } +} diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@2x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png new file mode 100644 index 0000000..9da19ea Binary files /dev/null and b/ios/Runner/Assets.xcassets/LaunchImage.imageset/LaunchImage@3x.png differ diff --git a/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md new file mode 100644 index 0000000..89c2725 --- /dev/null +++ b/ios/Runner/Assets.xcassets/LaunchImage.imageset/README.md @@ -0,0 +1,5 @@ +# Launch Screen Assets + +You can customize the launch screen with your own desired assets by replacing the image files in this directory. + +You can also do it by opening your Flutter project's Xcode project with `open ios/Runner.xcworkspace`, selecting `Runner/Assets.xcassets` in the Project Navigator and dropping in the desired images. \ No newline at end of file diff --git a/ios/Runner/Base.lproj/LaunchScreen.storyboard b/ios/Runner/Base.lproj/LaunchScreen.storyboard new file mode 100644 index 0000000..f2e259c --- /dev/null +++ b/ios/Runner/Base.lproj/LaunchScreen.storyboard @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Base.lproj/Main.storyboard b/ios/Runner/Base.lproj/Main.storyboard new file mode 100644 index 0000000..f3c2851 --- /dev/null +++ b/ios/Runner/Base.lproj/Main.storyboard @@ -0,0 +1,26 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ios/Runner/Info.plist b/ios/Runner/Info.plist new file mode 100644 index 0000000..ea45901 --- /dev/null +++ b/ios/Runner/Info.plist @@ -0,0 +1,47 @@ + + + + + CFBundleDevelopmentRegion + $(DEVELOPMENT_LANGUAGE) + CFBundleDisplayName + Nu + CFBundleExecutable + $(EXECUTABLE_NAME) + CFBundleIdentifier + $(PRODUCT_BUNDLE_IDENTIFIER) + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + nu + CFBundlePackageType + APPL + CFBundleShortVersionString + $(FLUTTER_BUILD_NAME) + CFBundleSignature + ???? + CFBundleVersion + $(FLUTTER_BUILD_NUMBER) + LSRequiresIPhoneOS + + UILaunchStoryboardName + LaunchScreen + UIMainStoryboardFile + Main + UISupportedInterfaceOrientations + + UIInterfaceOrientationPortrait + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UISupportedInterfaceOrientations~ipad + + UIInterfaceOrientationPortrait + UIInterfaceOrientationPortraitUpsideDown + UIInterfaceOrientationLandscapeLeft + UIInterfaceOrientationLandscapeRight + + UIViewControllerBasedStatusBarAppearance + + + diff --git a/ios/Runner/Runner-Bridging-Header.h b/ios/Runner/Runner-Bridging-Header.h new file mode 100644 index 0000000..308a2a5 --- /dev/null +++ b/ios/Runner/Runner-Bridging-Header.h @@ -0,0 +1 @@ +#import "GeneratedPluginRegistrant.h" diff --git a/lib/assets/PADI RIDE.json b/lib/assets/PADI RIDE.json new file mode 100644 index 0000000..bb9a7a3 --- /dev/null +++ b/lib/assets/PADI RIDE.json @@ -0,0 +1 @@ +{"UUID":"Y4BENgeTgUFqvZ2CcFH2fX","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"PADI RIDE","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"debug":false,"pngPath":"/usr/src/app/temp-out/pb-tmp-8b0fa560-35fc-4c4d-b84e-9f269a5378eb/nu/lib/assets/images","pages":[{"UUID":"0:1","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"LO FI","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"108:217","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/108:217.png","type":"screen","designNode":{"UUID":"108:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":36.0,"y":-321.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"152:59","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":235.0,"width":240.0,"x":94.0,"y":-229.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"152:60","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":85.0,"x":173.0,"y":-122.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"152:61","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":32.0,"x":61.0,"y":-284.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"152:62","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":315.0,"y":242.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"152:64","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Simplicity","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":244.0,"x":60.0,"y":154.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Simplicity"},{"UUID":"152:65","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":141.0,"y":299.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:66","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":191.0,"y":299.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:67","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":361.0,"y":246.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/152_67.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"117:14","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/117:14.png","type":"screen","designNode":{"UUID":"117:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1232.0,"y":-321.0,"z":6.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"117:48","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.0,"width":145.0,"x":1340.0,"y":-262.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_48.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1525.0,"y":-284.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login"},{"UUID":"117:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon/X","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.313720703125,"width":11.313720703125,"x":1259.686279296875,"y":-276.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Right","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":40.0,"x":1260.0,"y":-286.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Right"},{"UUID":"117:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":1354.0,"y":-75.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"118:9","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":1330.0,"y":118.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"117:50","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":1275.0,"y":-29.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"117:49","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":1311.0,"y":-58.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"117:47","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":88.0,"x":1369.0,"y":-193.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"117:51","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1312.0,"y":47.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_51.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:52","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1369.0,"y":47.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_52.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:53","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1425.0,"y":47.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_53.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:54","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1477.0,"y":47.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_54.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":1258.0,"y":171.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"118:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":1391.0,"y":179.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"}]},"isVisible":true},{"UUID":"118:33","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/118:33.png","type":"screen","designNode":{"UUID":"118:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4028.0,"y":-321.0,"z":18.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"118:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.9990234375,"x":4179.0,"y":-52.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_34.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:38","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":4053.0,"y":250.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"118:39","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":4003.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.6078431606292725,"g":0.6078431606292725,"b":0.6039215922355652},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"118:40","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":4041.0,"y":-249.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_40.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":48.0,"x":4050.0,"y":-238.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_41.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile Name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":103.0,"x":4118.0,"y":-235.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Profile Name"},{"UUID":"118:43","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":177.0,"x":4041.0,"y":-132.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Payment Method"},{"UUID":"118:55","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do more","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.0,"width":65.0,"x":4041.0,"y":168.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":15.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do more"},{"UUID":"118:44","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":4041.0,"y":-92.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"118:56","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Food delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":67.0,"x":4041.0,"y":199.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Food delivery"},{"UUID":"118:45","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Bank Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":4041.0,"y":-61.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Bank Card"},{"UUID":"118:57","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money driving","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":102.0,"x":4041.0,"y":217.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money driving"},{"UUID":"118:58","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":147.0,"x":4041.0,"y":235.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"},{"UUID":"118:59","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate us on store","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":81.0,"x":4041.0,"y":251.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate us on store"},{"UUID":"118:61","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"padiride.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":67.0,"x":4041.0,"y":269.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"padiride.com"},{"UUID":"119:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":235.0,"x":4028.0,"y":157.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null}]},"isVisible":true},{"UUID":"17:41","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Turn on location","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/17:41.png","type":"screen","designNode":{"UUID":"17:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn on location","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2028.0,"y":-321.0,"z":8.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"17:63","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2028.0,"y":-321.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.6078431606292725,"g":0.6078431606292725,"b":0.6039215922355652},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"22:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":2139.0,"y":-83.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/22_10.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"17:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":2053.0,"y":-171.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.8980392217636108,"g":0.8980392217636108,"b":0.8980392217636108},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"17:64","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":148.0,"width":285.0,"x":2065.0,"y":-144.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"17:71","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":2084.0,"y":59.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"17:72","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":138.0,"x":2139.0,"y":71.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}]},"isVisible":true},{"UUID":"1:2","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"LAUNCH","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/1:2.png","type":"screen","designNode":{"UUID":"1:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"LAUNCH","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-764.0,"y":-321.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"1:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"LOGO","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":108.0,"x":-638.0,"y":-31.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":36.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"LOGO"}]},"isVisible":true},{"UUID":"1:6","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/1:6.png","type":"screen","designNode":{"UUID":"1:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-364.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"1:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":235.0,"width":240.0,"x":-305.0,"y":-229.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"1:26","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":85.0,"x":-226.0,"y":-122.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"17:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":32.0,"x":-338.0,"y":-284.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"152:50","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-84.0,"y":242.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"152:51","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":-337.0,"y":134.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"152:52","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":-338.0,"y":151.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"152:53","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-258.0,"y":299.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:54","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-258.0,"y":299.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:55","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.087284088134766,"x":-38.0,"y":246.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/152_55.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"26:17","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/26:17.png","type":"screen","designNode":{"UUID":"26:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2828.0,"y":-321.0,"z":17.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:44","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":2979.0,"y":-52.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_44.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"26:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":2853.0,"y":273.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"26:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":2803.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.6078431606292725,"g":0.6078431606292725,"b":0.6039215922355652},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":2841.0,"y":-249.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":48.0,"x":2850.0,"y":-238.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_5.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile Name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":103.0,"x":2918.0,"y":-235.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Profile Name"},{"UUID":"28:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":2841.0,"y":-132.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"28:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":2841.0,"y":-92.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"28:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Message","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":73.0,"x":2841.0,"y":-52.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Message"},{"UUID":"28:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":2841.0,"y":-12.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"28:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":2841.0,"y":28.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"28:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":2841.0,"y":68.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"28:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":2918.0,"y":-210.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"28:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":2841.0,"y":-295.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"28:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":206.0,"x":2841.0,"y":199.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"28:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":2857.0,"y":211.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"28:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":2858.0,"y":232.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"28:21","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3013.0,"y":225.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_21.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"26:4","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/26:4.png","type":"screen","designNode":{"UUID":"26:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2428.0,"y":-321.0,"z":9.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"19:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2428.0,"y":-321.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/19_10.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":2487.0,"y":-17.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"24:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.75140380859375,"width":18.335205078125,"x":2457.5947265625,"y":-271.11346435546875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_22.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":2613.0,"y":-17.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"19:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.460466384887695,"width":48.259521484375,"x":2640.308349609375,"y":0.617706298828125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/19_42.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":2525.0,"y":-65.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/19_5.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":2502.0,"y":24.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"19:49","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":2619.0,"y":24.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"19:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.460466384887695,"width":48.259521484375,"x":2501.666748046875,"y":0.617706298828125,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/19_33.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"22:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.80775260925293,"width":46.299560546875,"x":2510.0,"y":-1.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/22_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"22:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.80775260925293,"width":46.299560546875,"x":2638.0,"y":-1.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/22_4.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"24:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":307.0,"x":2453.0,"y":116.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"24:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":2465.0,"y":131.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"24:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":2499.0,"y":126.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"24:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":2453.0,"y":86.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"24:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":2454.0,"y":-61.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_32.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"24:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bytesize:clock","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":21.0,"x":2488.0,"y":-60.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"24:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2489.3125,"y":-58.6875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_34.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"26:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":307.0,"x":2453.0,"y":201.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"26:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":2555.0,"y":213.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"48:107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 44","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":59.0,"width":27.0,"x":2733.0,"y":-94.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"48:108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":27.0,"x":2733.0,"y":-65.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":2738.0,"y":-87.0,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_110.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":14.0,"x":2739.0,"y":-50.0,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_112.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"28:103","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Support","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:103.png","type":"screen","designNode":{"UUID":"28:103","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5628.0,"y":-321.0,"z":15.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"41:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5647.0,"y":-282.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/41_2.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"41:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":197.0,"x":5710.0,"y":-300.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi Support"},{"UUID":"41:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":5612.0,"y":-208.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:30","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 26","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":5614.0,"y":-157.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:31","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 27","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":5614.0,"y":-100.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:39","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 31","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":5614.0,"y":8.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:43","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 33","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":5608.0,"y":116.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:36","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 30","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":5608.0,"y":-49.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:40","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":5614.0,"y":59.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:44","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 34","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":5615.0,"y":167.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"41:28","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Reach us: +2348136192991","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":189.0,"x":5651.0,"y":-198.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Reach us: +2348136192991"},{"UUID":"41:29","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social Media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":186.0,"x":5651.0,"y":-148.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social Media"},{"UUID":"42:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":5651.0,"y":-90.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"42:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":5651.0,"y":13.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"42:45","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":100.0,"x":5651.0,"y":123.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"42:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":5651.0,"y":-43.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"42:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":5651.0,"y":70.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"42:46","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":229.0,"x":5651.0,"y":172.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"}]},"isVisible":true},{"UUID":"28:114","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"About Us","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:114.png","type":"screen","designNode":{"UUID":"28:114","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About Us","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6028.0,"y":-321.0,"z":16.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"47:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":6039.0,"y":-279.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/47_4.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"47:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":93.0,"x":6158.0,"y":-297.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"47:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 35","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":6015.0,"y":-211.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 36","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":6017.0,"y":-164.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 37","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":6017.0,"y":-103.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:9","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 38","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":6017.0,"y":5.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 39","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":6011.0,"y":113.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 40","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":6011.0,"y":-56.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 41","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":6017.0,"y":52.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 42","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":6018.0,"y":160.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:23","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 43","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":6018.0,"y":207.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate Us Now","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":96.0,"x":6054.0,"y":-197.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate Us Now"},{"UUID":"47:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Version 0.86","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":92.0,"x":6162.0,"y":-251.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Version 0.86"},{"UUID":"47:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":186.0,"x":6054.0,"y":-149.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social media"},{"UUID":"47:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":6054.0,"y":-88.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"47:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":6054.0,"y":20.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"47:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":100.0,"x":6054.0,"y":125.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"47:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":6054.0,"y":-42.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"47:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":6054.0,"y":63.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"47:21","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":229.0,"x":6054.0,"y":172.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"},{"UUID":"47:24","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Legal","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":42.0,"x":6054.0,"y":219.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Legal"}]},"isVisible":true},{"UUID":"28:177","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"request ride","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:177.png","type":"screen","designNode":{"UUID":"28:177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"request ride","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3628.0,"y":-321.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":3741.0,"y":-129.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_181.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":396.0,"width":360.0,"x":3628.0,"y":-42.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3657.0,"y":-287.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":269.0,"x":3653.0,"y":17.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":3677.0,"y":28.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"28:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":3808.0,"y":14.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"28:164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":3849.0,"y":26.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"118:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":310.0,"x":3653.0,"y":95.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"118:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":310.0,"x":3653.0,"y":95.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":139.0,"x":3700.0,"y":105.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Payment Method"},{"UUID":"118:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":3904.0,"y":109.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"118:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.721435546875,"x":3669.10400390625,"y":113.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_20.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"28:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":306.0,"x":3657.0,"y":204.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"28:159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Request Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":3749.0,"y":216.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Request Ride "}]},"isVisible":true},{"UUID":"28:219","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:219.png","type":"screen","designNode":{"UUID":"28:219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4428.0,"y":-321.0,"z":14.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":4447.0,"y":-282.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":4535.0,"y":-300.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"28:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":276.0,"x":4470.0,"y":-239.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"28:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":276.0,"x":4470.0,"y":-239.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":247.0,"x":4499.0,"y":-232.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":44.05072021484375,"width":242.94482421875,"x":4483.796875,"y":-171.8842315673828,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":276.0,"x":4470.0,"y":-204.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_237.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"33:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":276.0,"x":4470.0,"y":1.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":276.0,"x":4470.0,"y":66.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":86.0,"x":4470.0,"y":131.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":91.0,"x":4655.0,"y":131.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":266.0,"x":4475.0,"y":178.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"33:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":4569.0,"y":190.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"33:8","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":4719.0,"y":35.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/33_8.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"33:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":4470.0,"y":-47.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"33:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":4468.0,"y":11.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"33:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":4468.0,"y":76.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"33:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":4655.0,"y":76.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"}]},"isVisible":true},{"UUID":"28:48","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiation Feature","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:48.png","type":"screen","designNode":{"UUID":"28:48","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3228.0,"y":-321.0,"z":11.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:142","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":3332.0,"y":-109.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_142.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":310.0,"x":3253.0,"y":-323.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"28:132","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":230.0,"width":310.0,"x":3253.0,"y":-19.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"28:133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Step 1: Select your mode of transportation Step 2: Negotiate with the driver for lower price Step 3: Request a your cab to start trip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":148.0,"width":285.0,"x":3264.0,"y":44.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Step 1: Select your mode of transportation\n\nStep 2: Negotiate with the driver for lower price\n\nStep 3: Request a your cab to start trip"},{"UUID":"28:136","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Using the Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":284.0,"x":3264.0,"y":0.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Using the Negotiation Feature"},{"UUID":"28:135","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":3361.0,"y":216.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"28:138","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn more","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":3253.0,"y":266.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn more"},{"UUID":"28:140","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":166.0,"x":3397.0,"y":261.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"28:139","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3533.0,"y":275.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_139.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:141","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":121.0,"x":3404.0,"y":266.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate Ride"},{"UUID":"28:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3246.0,"y":-287.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"47:28","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":88.0,"x":3364.0,"y":-220.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"}]},"isVisible":true},{"UUID":"28:70","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"History","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:70.png","type":"screen","designNode":{"UUID":"28:70","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"History","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5228.0,"y":-321.0,"z":12.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5257.0,"y":-282.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_189.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":181.0,"x":5328.0,"y":-300.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"28:194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":344.0,"x":5236.0,"y":-213.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"28:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":344.0,"x":5236.0,"y":-137.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"28:196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Jabi Lake","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":5259.0,"y":-211.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Jabi Lake "},{"UUID":"28:200","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"MAITAMA","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":5259.0,"y":-133.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"MAITAMA "},{"UUID":"28:198","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 7:41 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":105.0,"x":5259.0,"y":-193.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 7:41 AM "},{"UUID":"28:201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 8:58 PM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":5259.0,"y":-115.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 8:58 PM "},{"UUID":"28:199","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"DELIVERY COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":123.0,"x":5259.0,"y":-177.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"DELIVERY COMPLETED "},{"UUID":"28:202","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":97.0,"x":5259.0,"y":-99.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED "},{"UUID":"28:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5542.0,"y":-185.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_217.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5542.0,"y":-111.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_218.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"28:81","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Visit Profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/28:81.png","type":"screen","designNode":{"UUID":"28:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit Profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4828.0,"y":-321.0,"z":13.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 20","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":506.0,"width":366.0,"x":4822.0,"y":-157.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":97.0,"width":97.0,"x":4956.0,"y":-205.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/28_206.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":71.0,"x":4969.0,"y":-189.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_207.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":4847.0,"y":-282.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_216.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":-34.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_13.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":27.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_14.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":149.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_15.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":88.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":4867.0,"y":-24.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"johndoe@gmail.com"},{"UUID":"119:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+2348123567890","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":4867.0,"y":37.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+2348123567890"},{"UUID":"119:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":4867.0,"y":160.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"FCT"},{"UUID":"119:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Johndeo334@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":204.0,"x":4867.0,"y":99.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Johndeo334@gmail.com"},{"UUID":"119:21","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile Name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":103.0,"x":4956.0,"y":-99.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Profile Name"},{"UUID":"119:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":4975.0,"y":-74.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "}]},"isVisible":true},{"UUID":"2:27","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/2:27.png","type":"screen","designNode":{"UUID":"2:27","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":836.0,"y":-321.0,"z":5.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"10:74","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1129.0,"y":-284.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login"},{"UUID":"10:76","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon/X","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.313720703125,"width":11.313720703125,"x":863.686279296875,"y":-276.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/10_76.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"10:79","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Right","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":40.0,"x":864.0,"y":-286.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Right"},{"UUID":"10:75","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":886.0,"y":-21.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"10:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":862.0,"y":39.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"10:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":862.0,"y":39.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/10_81.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"10:82","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":898.0,"y":50.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"116:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7034675467","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":947.0,"y":50.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7034675467"},{"UUID":"10:83","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1111.0,"y":53.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"116:9","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":878.0,"y":57.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/116_9.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"11:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":914.0,"y":198.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"10:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":862.0,"y":120.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"10:89","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":992.0,"y":128.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"11:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1057.0,"y":198.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/11_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1017.0,"y":198.0,"z":9.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"11:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1017.0,"y":198.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"11:228","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":1017.0,"y":201.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_228.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"11:244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1096.0,"y":198.0,"z":10.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"11:243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1096.0,"y":198.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/11_243.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:237","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":1097.0,"y":201.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_237.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"11:245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":308.0,"x":862.0,"y":-329.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"11:246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":88.0,"x":972.0,"y":-214.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"}]},"isVisible":true},{"UUID":"2:36","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Signup","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/2:36.png","type":"screen","designNode":{"UUID":"2:36","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Signup","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1628.0,"y":-321.0,"z":7.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"11:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Set up profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":201.0,"x":1707.0,"y":-286.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Set up profile"},{"UUID":"11:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":309.0,"x":1654.0,"y":-226.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"11:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":309.0,"x":1654.0,"y":-226.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":1668.0,"y":-216.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"11:251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1904.0,"y":-212.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"11:252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":-165.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_252.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"12:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":-104.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/12_2.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"13:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":18.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/13_2.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"13:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":-43.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/13_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":85.0,"x":1668.0,"y":-155.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your Email"},{"UUID":"12:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Phone Number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":161.0,"x":1668.0,"y":-94.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your Phone Number"},{"UUID":"13:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":1668.0,"y":29.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"State"},{"UUID":"13:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":1668.0,"y":-32.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Address"},{"UUID":"11:255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":1694.0,"y":189.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"11:256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":309.0,"x":1653.0,"y":122.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"11:257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":1777.0,"y":130.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"11:260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1857.0,"y":190.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1817.0,"y":190.0,"z":14.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"11:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1817.0,"y":190.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"11:265","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":1817.0,"y":193.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_265.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"11:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1897.0,"y":190.0,"z":15.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"11:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1897.0,"y":190.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:274","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":1898.0,"y":193.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_274.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"14:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":1654.0,"y":79.5,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"14:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":1654.0,"y":79.5,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9647058844566345,"g":0.9647058844566345,"b":0.9647058844566345},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.9083333611488342,"g":0.9083333611488342,"b":0.9083333611488342},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"14:14","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":1658.0,"y":83.5,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/14_14.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"14:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and comditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":249.0,"x":1678.0,"y":79.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and comditions"}]},"isVisible":true},{"UUID":"48:34","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Search Destination","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/48:34.png","type":"screen","designNode":{"UUID":"48:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search Destination","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2428.0,"y":375.0,"z":10.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"48:90","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":283.0,"x":2464.0,"y":897.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"48:91","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Done","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":2582.0,"y":909.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Done"},{"UUID":"48:92","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":365.0,"x":2428.0,"y":484.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:95","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":0.0,"x":2473.5,"y":417.992431640625,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:96","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":270.0,"x":2493.0,"y":431.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:83","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Area 11, Garki area........","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":177.0,"x":2503.0,"y":401.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Area 11, Garki area........"},{"UUID":"48:104","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":52.0,"x":2503.0,"y":505.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home."},{"UUID":"48:97","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":155.0,"x":2503.0,"y":439.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"48:105","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"University of Abuja, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":206.0,"x":2503.0,"y":539.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"University of Abuja, Abuja"},{"UUID":"48:106","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"46 Kbuwa, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":2503.0,"y":577.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"46 Kbuwa, Abuja"},{"UUID":"48:93","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2465.0,"y":407.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_93.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:94","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2465.0,"y":444.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_94.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:85","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":2463.0,"y":507.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_85.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:87","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2464.0,"y":542.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_87.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:101","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2464.0,"y":577.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_101.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"95:25","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/95:25.png","type":"screen","designNode":{"UUID":"95:25","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":436.0,"y":-321.0,"z":4.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"152:68","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":235.0,"width":240.0,"x":494.0,"y":-227.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"152:69","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":85.0,"x":573.0,"y":-120.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"152:70","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":32.0,"x":461.0,"y":-282.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"152:71","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Get Started","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":74.0,"x":679.0,"y":244.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Get Started"},{"UUID":"152:73","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Class","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":197.0,"x":462.0,"y":156.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Class"},{"UUID":"152:74","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":541.0,"y":301.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:75","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":643.0,"y":301.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:76","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":761.0,"y":248.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/152_76.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true}],"type":"page"},{"UUID":"477:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"PROTOTYPE","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"479:1013","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:1013.png","type":"screen","designNode":{"UUID":"479:1013","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2218.0,"y":-320.0,"z":26.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:1014","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":1722.0,"y":-390.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_1014.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1015","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2513.0,"y":-12.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:1016","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2513.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1016.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1017","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":2527.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1017.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:1019","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2243.0,"y":-9.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1019.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1020","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2243.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1020.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:1021","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2301.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1021.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1022","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":2253.0,"y":1.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1022.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1023","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2312.0,"y":2.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1023.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1026","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":2286.0,"y":78.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:1027","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":2256.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1027.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1029","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":2412.0,"y":78.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:1030","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":2301.0,"y":119.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"479:1031","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":2418.0,"y":119.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:1032","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":2309.0,"y":94.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1032.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1038","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":2317.23046875,"y":-176.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1038.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1039","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":2437.0,"y":94.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1039.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1045","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":2242.0,"y":227.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:1046","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":2349.0,"y":236.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:1047","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.084228515625,"x":2426.0,"y":0.000011086463928222656,"z":17.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:1048","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.084228515625,"x":2426.0,"y":0.000011086463928222656,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1048.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1049","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625297546386719,"width":12.625244140625,"x":2440.729248046875,"y":14.72950553894043,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1049.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:1051","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2443.0,"y":-303.0,"z":18.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2520.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2486.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1051;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1051;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2462.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1051;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1051;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2443.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1051;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1051;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:1052","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":2245.0,"y":-270.0,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1052.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1053","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":571.0,"width":336.0,"x":2231.0,"y":-104.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:1054","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":125.0,"width":125.0,"x":2334.0,"y":-171.0,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1054.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1055","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":171.0,"x":2311.0,"y":-40.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":36.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"479:1056","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":2243.0,"y":58.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"johndoe@gmail.com"},{"UUID":"479:1057","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+2348123567890","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":2243.0,"y":119.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+2348123567890"},{"UUID":"479:1058","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":2243.0,"y":241.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"FCT"},{"UUID":"479:1059","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Johndeo334@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":204.0,"x":2243.0,"y":180.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Johndeo334@gmail.com"},{"UUID":"479:1060","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":72.0,"x":2368.0,"y":8.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"479:1061","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":89.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:1062","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":150.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:1063","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":212.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:1064","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":273.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}]},"isVisible":true},{"UUID":"479:1065","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logo padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:1065.png","type":"screen","designNode":{"UUID":"479:1065","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"logo padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"481:1259","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4179.0,"y":-320.0,"z":27.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:1066","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4571.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1066.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1067","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"WhatsApp_Image_2021-07-23_at_8.10 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":91.0,"width":200.0,"x":-4099.0,"y":-62.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_1067.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen padi 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:117.png","type":"screen","designNode":{"UUID":"479:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen padi 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:264","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-3380.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3503.000244140625,"y":-520.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-3155.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-3078.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-3112.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_119;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_119;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-3135.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_119;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_119;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-3155.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_119;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_119;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-3100.0,"y":209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"479:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Class","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":192.0,"x":-3355.0,"y":117.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Class"},{"UUID":"479:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-3274.0,"y":266.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-3224.0,"y":266.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-3054.0,"y":213.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_124.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:125","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Destination_re_sr74 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":284.0,"width":399.0,"x":-3356.0,"y":-224.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_125.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":-3355.0,"y":-274.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"479:168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our Rides are safe and fast","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":176.0,"x":-3354.0,"y":151.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our Rides are safe and fast"}]},"isVisible":true},{"UUID":"479:169","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen padi 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:169.png","type":"screen","designNode":{"UUID":"479:169","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen padi 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:117","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-3779.0,"y":-320.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:170","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3885.0,"y":-521.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:171","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-3554.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-3477.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-3511.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_171;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_171;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-3534.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_171;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_171;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-3554.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_171;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_171;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":-3752.0,"y":101.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"479:173","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our rides are negotiable and convenient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":263.0,"x":-3754.0,"y":151.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our rides are negotiable and convenient"},{"UUID":"479:174","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":-3753.0,"y":118.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"479:175","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-3673.0,"y":266.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-3673.0,"y":266.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 147","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":56.08740234375,"x":-3491.0,"y":210.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-3491.0,"y":210.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"479:179","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-3445.0,"y":214.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_179.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":-3753.0,"y":-273.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"479:181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":268.20269775390625,"width":406.095703125,"x":-3777.095703125,"y":-234.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_181.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.2197265625,"width":0.056884765625,"x":-3754.967529296875,"y":-39.81378173828125,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_182.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:183","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2197723388671875,"width":3.597900390625,"x":-3691.346923828125,"y":-16.997833251953125,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_183.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.181320190429688,"width":8.8701171875,"x":-3561.126220703125,"y":-211.738037109375,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_184.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":223.26889038085938,"width":75.3984375,"x":-3612.343017578125,"y":-191.30508422851562,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":225.50778198242188,"width":30.410888671875,"x":-3536.944580078125,"y":-191.30508422851562,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_186.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.720458984375,"y":-169.12445068359375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3580.34619140625,"y":-169.12445068359375,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_188.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.97216796875,"y":-169.12445068359375,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_189.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3598.403564453125,"y":-143.14060974121094,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_190.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:191","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3580.029541015625,"y":-143.14060974121094,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_191.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:192","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3561.655517578125,"y":-143.14060974121094,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_192.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:193","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.086669921875,"y":-117.15676879882812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_193.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.712646484375,"y":-117.15676879882812,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_194.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.338623046875,"y":-117.15676879882812,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_195.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.77001953125,"y":-91.17292785644531,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_196.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:197","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.39599609375,"y":-91.17292785644531,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_197.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:198","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.021728515625,"y":-91.17292785644531,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_198.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:199","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.453125,"y":-65.1890869140625,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_199.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:200","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.0791015625,"y":-65.1890869140625,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_200.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.705078125,"y":-65.1890869140625,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_201.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:202","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3597.13623046875,"y":-39.20526123046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_202.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:203","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3578.76220703125,"y":-39.20526123046875,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_203.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:204","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3560.38818359375,"y":-39.20526123046875,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_204.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3596.819580078125,"y":-13.221405029296875,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_205.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3578.445556640625,"y":-13.221405029296875,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_206.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3560.071533203125,"y":-13.221405029296875,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_207.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9208526611328125,"width":11.403076171875,"x":-3596.501220703125,"y":12.76177978515625,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_208.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:209","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.409912109375,"width":11.406982421875,"x":-3578.1298828125,"y":12.76171875,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_209.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:210","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3559.754638671875,"y":12.762451171875,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:211","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.146377563476562,"width":8.8701171875,"x":-3457.746826171875,"y":-98.7779541015625,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_211.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":120.96284484863281,"width":75.398681640625,"x":-3517.304443359375,"y":-86.76014709472656,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_212.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":110.17411804199219,"width":30.41064453125,"x":-3441.90576171875,"y":-86.76014709472656,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_213.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:214","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3502.414794921875,"y":-65.1890869140625,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_214.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:215","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3484.040771484375,"y":-65.1890869140625,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_215.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.666748046875,"y":-65.1890869140625,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_216.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3502.09814453125,"y":-39.20526123046875,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_217.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3483.72412109375,"y":-39.20526123046875,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_218.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3465.349853515625,"y":-39.20526123046875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_219.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3501.78125,"y":-13.221405029296875,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_220.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3483.4072265625,"y":-13.221405029296875,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_221.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3465.033203125,"y":-13.221405029296875,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3501.464599609375,"y":12.762451171875,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_223.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3483.09033203125,"y":12.762451171875,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_224.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3464.71630859375,"y":12.762451171875,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.060516357421875,"width":45.384765625,"x":-3508.379638671875,"y":37.41522216796875,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_226.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":73.21176147460938,"width":167.767578125,"x":-3747.372314453125,"y":-25.431365966796875,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_227.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":52.68495178222656,"width":35.381591796875,"x":-3746.602783203125,"y":-12.77655029296875,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_228.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.35690307617188,"width":50.770751953125,"x":-3628.74365234375,"y":-2.356903076171875,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_229.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":79.50950622558594,"width":295.288330078125,"x":-3747.69775390625,"y":-31.07318115234375,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_230.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.98503112792969,"width":206.461669921875,"x":-3730.58154296875,"y":-76.46965026855469,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_231.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.48428344726562,"width":293.618896484375,"x":-3744.879150390625,"y":-45.9349365234375,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.6736907958984375,"width":12.59228515625,"x":-3703.9609375,"y":-31.204376220703125,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.545944213867188,"width":11.54296875,"x":-3563.20849609375,"y":17.9970703125,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.851654052734375,"width":30.029052734375,"x":-3581.661865234375,"y":-31.4085693359375,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_235.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.840133666992188,"width":24.343017578125,"x":-3479.78759765625,"y":-34.72076416015625,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_236.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.721405029296875,"width":28.926513671875,"x":-3722.55224609375,"y":-69.66177368164062,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_237.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.922271728515625,"width":44.819580078125,"x":-3690.07958984375,"y":-74.82081604003906,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_238.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.514373779296875,"width":99.5126953125,"x":-3635.99560546875,"y":-74.50166320800781,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.985595703125,"width":151.693359375,"x":-3712.80322265625,"y":-83.94476318359375,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_240.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.73707580566406,"width":17.839111328125,"x":-3743.9609375,"y":-4.045166015625,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_241.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":46.97100830078125,"width":28.332763671875,"x":-3624.59619140625,"y":8.2879638671875,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_242.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.188919067382812,"width":11.805419921875,"x":-3660.011962890625,"y":-43.23382568359375,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_243.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.645248413085938,"width":20.46240234375,"x":-3674.572021484375,"y":-50.622589111328125,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_244.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.010284423828125,"width":85.916259765625,"x":-3539.8603515625,"y":-12.967041015625,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_245.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.061462879180908,"width":68.810546875,"x":-3530.766357421875,"y":-9.688496589660645,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_246.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1764373779296875,"width":74.845458984375,"x":-3534.289794921875,"y":-7.194204807281494,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_247.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0953521728515625,"width":80.26806640625,"x":-3537.08740234375,"y":-3.806408405303955,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_248.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 142","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.61727905273438,"width":93.194580078125,"x":-3779.0,"y":-102.16268920898438,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_249.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:264","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen padi 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:264.png","type":"screen","designNode":{"UUID":"479:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen padi 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2980.0,"y":-320.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3089.000244140625,"y":-519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2755.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2678.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2712.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_266;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_266;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2735.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_266;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_266;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2755.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_266;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_266;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Get Started","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":74.0,"x":-2736.0,"y":209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Get Started"},{"UUID":"479:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-2874.0,"y":266.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-2773.0,"y":266.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-2654.0,"y":213.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:271","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Order_ride_re_372k 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":311.0,"width":663.0,"x":-3010.0,"y":-253.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"We provide delivery service","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":313.0,"x":-2957.0,"y":117.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"We provide delivery service"},{"UUID":"479:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our ride ease stress and saves time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":232.0,"x":-2954.0,"y":151.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our ride ease stress and saves time"}]},"isVisible":true},{"UUID":"479:306","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:306.png","type":"screen","designNode":{"UUID":"479:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2580.0,"y":378.0,"z":4.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":606.0,"width":360.0,"x":-2580.0,"y":84.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3803921639919281,"g":0.7058823704719543,"b":0.3607843220233917},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":180.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":180.0,"type":"rectangle","child":null},{"UUID":"479:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2355.0,"y":395.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2278.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2312.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_308;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_308;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2335.125,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_308;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_308;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2355.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_308;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_308;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:309","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Access_account_re_8spm 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":210.0,"width":206.0,"x":-2493.0,"y":469.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_309.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:339","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":-2529.0,"y":733.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"479:340","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":793.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_340.png","prototypeNodeUUID":"492:1614","type":"image"},{"UUID":"479:346","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":-2501.0,"y":952.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"479:347","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2553.0,"y":874.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:348","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":-2423.0,"y":882.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"479:349","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2358.0,"y":952.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_349.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:352","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":952.0,"z":9.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:353","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":952.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:354","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-2398.0,"y":955.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_354.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":952.0,"z":10.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":952.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_361.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:363","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":-2318.0,"y":955.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_363.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"479:365","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:365.png","type":"screen","designNode":{"UUID":"479:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:1870","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2180.0,"y":-320.0,"z":5.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1955.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1878.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1912.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_366;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_366;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1935.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_366;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_366;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1955.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_366;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_366;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":-2058.0,"y":-201.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"479:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":-2082.0,"y":-20.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"479:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":-2137.0,"y":-155.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"479:370","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":-2101.0,"y":-184.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"479:371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2100.0,"y":-79.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_371.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2043.0,"y":-79.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_372.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1987.0,"y":-79.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_373.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1935.0,"y":-79.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_374.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2154.0,"y":14.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":-2021.0,"y":22.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"479:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":83.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"159:300","parameters":null,"overrideValues":[{"UUID":"159:369","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":-1860.0,"y":288.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_369.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_369.png","type":"image"},{"UUID":"159:368","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":-1860.0,"y":288.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_368.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_368.png","type":"image"},{"UUID":"159:366","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":278.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_366.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_366.png","type":"image"},{"UUID":"159:374","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":-2078.0,"y":289.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_374.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_374.png","type":"image"},{"UUID":"159:373","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2073.0,"y":285.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_373.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_373.png","type":"image"},{"UUID":"159:372","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2078.0,"y":285.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_372.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_372.png","type":"image"},{"UUID":"159:371","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":280.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_371.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_371.png","type":"image"},{"UUID":"159:345","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"?123","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":275.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"valueName":"?123","type":"stringValue"},{"UUID":"159:344","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":",","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":278.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"valueName":",","type":"stringValue"},{"UUID":"159:343","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":".","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":278.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"valueName":".","type":"stringValue"},{"UUID":"159:377","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Polygon 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":237.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_377.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_377.png","type":"image"},{"UUID":"159:382","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"value":{"UUID":"I479:377;159:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":238.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/I479_377;159_382.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_382.png","type":"image"},{"UUID":"159:338","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"p","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":141.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"valueName":"p","type":"stringValue"},{"UUID":"159:337","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"0","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":99.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"valueName":"0","type":"stringValue"},{"UUID":"159:336","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"l","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":184.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"valueName":"l","type":"stringValue"},{"UUID":"159:335","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"o","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":141.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"valueName":"o","type":"stringValue"},{"UUID":"159:334","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"9","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":99.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"valueName":"9","type":"stringValue"},{"UUID":"159:333","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"k","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":184.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"valueName":"k","type":"stringValue"},{"UUID":"159:332","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"i","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":141.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"valueName":"i","type":"stringValue"},{"UUID":"159:331","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"8","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":99.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"valueName":"8","type":"stringValue"},{"UUID":"159:330","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"m","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":227.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"valueName":"m","type":"stringValue"},{"UUID":"159:329","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"j","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":184.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"valueName":"j","type":"stringValue"},{"UUID":"159:328","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"u","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":141.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"valueName":"u","type":"stringValue"},{"UUID":"159:327","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"7","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":99.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"valueName":"7","type":"stringValue"},{"UUID":"159:326","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"n","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":227.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"valueName":"n","type":"stringValue"},{"UUID":"159:325","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"h","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":184.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"valueName":"h","type":"stringValue"},{"UUID":"159:324","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"y","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":141.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"valueName":"y","type":"stringValue"},{"UUID":"159:323","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"6","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":99.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"valueName":"6","type":"stringValue"},{"UUID":"159:322","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"b","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":227.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"valueName":"b","type":"stringValue"},{"UUID":"159:321","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"g","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":184.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"valueName":"g","type":"stringValue"},{"UUID":"159:320","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"t","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":141.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"valueName":"t","type":"stringValue"},{"UUID":"159:319","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":99.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"valueName":"5","type":"stringValue"},{"UUID":"159:318","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"v","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":227.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"valueName":"v","type":"stringValue"},{"UUID":"159:317","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"f","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":184.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"valueName":"f","type":"stringValue"},{"UUID":"159:316","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"r","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":141.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"valueName":"r","type":"stringValue"},{"UUID":"159:315","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":99.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"valueName":"4","type":"stringValue"},{"UUID":"159:314","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"c","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":227.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"valueName":"c","type":"stringValue"},{"UUID":"159:313","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"d","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":184.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"valueName":"d","type":"stringValue"},{"UUID":"159:312","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"e","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":141.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"valueName":"e","type":"stringValue"},{"UUID":"159:311","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":99.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"valueName":"3","type":"stringValue"},{"UUID":"159:310","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"x","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":227.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"valueName":"x","type":"stringValue"},{"UUID":"159:309","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"s","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":184.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"valueName":"s","type":"stringValue"},{"UUID":"159:308","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"w","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":141.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"valueName":"w","type":"stringValue"},{"UUID":"159:307","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":99.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"valueName":"2","type":"stringValue"},{"UUID":"159:306","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"z","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":227.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"valueName":"z","type":"stringValue"},{"UUID":"159:305","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"a","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":184.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"valueName":"a","type":"stringValue"},{"UUID":"159:304","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"q","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":141.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"valueName":"q","type":"stringValue"},{"UUID":"159:303","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":99.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"valueName":"1","type":"stringValue"}],"sharedNodeSetID":null,"type":"shared_instance"}]},"isVisible":true},{"UUID":"479:417","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Location pop up padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:417.png","type":"screen","designNode":{"UUID":"479:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Location pop up padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1380.0,"y":-320.0,"z":7.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1637.0,"y":-473.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3121.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:419","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":499.9476318359375,"width":324.79815673828125,"x":-1099.144287109375,"y":-8.592529296875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.36944580078125,"x":-973.654052734375,"y":49.62921142578125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_420.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-907.218017578125,"y":293.90740966796875,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_423.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.3695068359375,"x":-1099.144287109375,"y":-8.592529296875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_426.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.36944580078125,"x":-813.715576171875,"y":171.135498046875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_429.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:432","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-928.133056640625,"y":450.85302734375,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_432.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:435","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":429.0,"x":-1409.0,"y":-320.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:436","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 144","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1355.0,"y":-170.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:437","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1355.0,"y":-170.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":281.634033203125,"x":-1343.856201171875,"y":-149.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"479:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":258.3333740234375,"x":-1332.0,"y":67.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:440","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":142.8431396484375,"x":-1274.0,"y":76.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}],"type":"group"},{"UUID":"479:441","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1155.0,"y":-299.0,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1078.0,"y":-299.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1112.0,"y":-298.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_441;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_441;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1135.125,"y":-297.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_441;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_441;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1155.0,"y":-297.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_441;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_441;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"}]},"isVisible":true},{"UUID":"479:442","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:442.png","type":"screen","designNode":{"UUID":"479:442","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-980.0,"y":-320.0,"z":8.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:443","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1268.0,"y":-723.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_443.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":-600.1442260742188,"y":-167.97216796875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":-474.654052734375,"y":-111.3785400390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_445.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:448","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":-408.218017578125,"y":126.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_448.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":-600.1442260742188,"y":-167.97216796875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_451.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36945724487305,"width":39.36944580078125,"x":-314.715576171875,"y":6.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_454.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-429.133056640625,"y":278.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_457.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":-560.7747192382812,"y":94.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":-560.7747192382812,"y":94.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_461.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":-543.5506591796875,"y":111.30470275878906,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_462.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"479:464","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-755.0,"y":-303.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-678.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-712.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_464;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_464;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-735.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_464;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_464;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-755.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_464;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_464;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":-12.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_466.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":-671.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_467.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:469","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_469.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:470","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":-270.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_470.png","prototypeNodeUUID":"492:3248","type":"image"},{"UUID":"479:471","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-897.0,"y":-9.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_471.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:472","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-945.0,"y":1.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_472.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:473","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-886.0,"y":2.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_473.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:477","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-942.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_477.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:479","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":-777.0,"y":110.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"664:415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 160","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-919.0,"y":110.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:476","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-919.0,"y":110.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:480","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-904.0,"y":151.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "}],"type":"group"},{"UUID":"479:481","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":-771.0,"y":151.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:488","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":-752.0,"y":126.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_488.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-955.0,"y":-190.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:612","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:495","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.05999755859375,"x":-945.0,"y":-175.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_495.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:496","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":-919.0,"y":-178.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"479:497","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-849.0,"y":236.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:498","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-955.0,"y":-222.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "}]},"isVisible":true},{"UUID":"479:559","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"payment method","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:559.png","type":"screen","designNode":{"UUID":"479:559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment method","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1420.0,"y":-320.0,"z":12.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":1259.0,"y":-753.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_560.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1715.0,"y":-12.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1715.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_562.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":1729.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_563.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:565","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1445.0,"y":-9.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_565.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:566","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1445.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_566.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:567","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1503.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_567.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:568","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":1455.0,"y":1.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_568.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:569","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":1514.0,"y":2.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_569.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:572","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":1488.0,"y":78.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:573","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":1458.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_573.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:575","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":1614.0,"y":78.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:576","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":1503.0,"y":119.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"479:577","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":1620.0,"y":119.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:578","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":1511.0,"y":94.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_578.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:584","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":1519.23046875,"y":-176.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_584.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":1639.0,"y":94.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_585.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.2279052734375,"x":1501.0,"y":-144.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_591.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:594","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":1445.0,"y":-165.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:595","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":1455.0,"y":-150.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_595.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:596","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":1481.0,"y":-153.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"479:597","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":1551.0,"y":236.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:598","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":1445.0,"y":-199.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"479:599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1645.0,"y":-303.0,"z":21.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1722.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1688.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_599;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_599;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1664.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_599;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_599;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1645.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_599;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_599;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 145","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":1391.0,"y":-320.0,"z":22.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:601","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":1391.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:602","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":1441.0,"y":-248.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_602.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":1522.0,"y":-234.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"}],"type":"group"},{"UUID":"479:604","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":177.0,"x":1446.0,"y":-135.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Payment Method"},{"UUID":"479:605","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":1446.0,"y":-89.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"479:606","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Bank Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":1446.0,"y":-58.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:826","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Bank Card"},{"UUID":"479:607","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":1446.0,"y":200.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:608","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":1463.0,"y":212.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"479:609","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":1464.0,"y":233.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"479:610","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":1619.0,"y":222.0,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_610.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:611","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":1446.0,"y":268.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"479:612","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Search padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:612.png","type":"screen","designNode":{"UUID":"479:612","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-580.0,"y":-320.0,"z":13.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:613","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-356.0,"y":-296.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-279.0,"y":-296.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-313.0,"y":-295.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_613;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_613;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-336.125,"y":-294.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_613;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_613;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-356.0,"y":-294.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_613;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_613;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:614","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-555.0,"y":226.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2982","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:615","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Done","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":-424.0,"y":238.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Done"},{"UUID":"479:616","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 50","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":106.0,"width":311.0,"x":-555.0,"y":-234.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:617","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":0.0,"x":-534.5,"y":-189.00758361816406,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:618","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":270.0,"x":-515.0,"y":-176.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:619","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Area 11, Garki area........","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":-505.0,"y":-204.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Area 11, Garki area........"},{"UUID":"479:620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":39.0,"x":-517.0,"y":-108.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home."},{"UUID":"479:621","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":136.0,"x":-505.0,"y":-166.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"479:622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"University of Abuja, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":155.0,"x":-517.0,"y":-85.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"University of Abuja, Abuja"},{"UUID":"479:623","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"46 Kbuwa, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":-517.0,"y":-62.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"46 Kbuwa, Abuja"},{"UUID":"479:624","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-543.0,"y":-200.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_624.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:625","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-543.0,"y":-163.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_625.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:626","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":13.0,"x":-543.0,"y":-107.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_626.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.383148193359375,"width":12.3831787109375,"x":-542.326171875,"y":-83.06521606445312,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_627.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:630","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.38315200805664,"width":12.3831787109375,"x":-542.326171875,"y":-59.478271484375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_630.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:633","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiation feature","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:633.png","type":"screen","designNode":{"UUID":"479:633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation feature","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":220.0,"y":-320.0,"z":14.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:634","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":445.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":522.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":488.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_634;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_634;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":464.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_634;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_634;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":445.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_634;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_634;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":326.0,"y":-234.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"479:636","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":246.0,"y":-5.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"479:637","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":246.0,"y":35.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"479:638","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":328.0,"y":-209.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"839:408","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 161","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":258.0,"width":311.0,"x":245.0,"y":-34.0,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:639","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":258.0,"width":311.0,"x":245.0,"y":-34.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:640","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Step 1: Select Delivery as your transportation option Step 2: Search and select a Destination and PickUp location Step 3: Request a delivery Rider/Driver to start trip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":172.0,"width":289.0,"x":257.0,"y":26.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Step 1: Select Delivery as your transportation option\n\nStep 2: Search and select a Destination and PickUp location\n\nStep 3: Request a delivery Rider/Driver to start trip"},{"UUID":"479:641","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Using the Delivery Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.434782028198242,"width":284.9161682128906,"x":256.0354919433594,"y":-12.686956405639648,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":" Using the Delivery Feature"}],"type":"group"},{"UUID":"479:646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"undraw_conversation_h12g 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":181.0,"width":279.0,"x":252.0,"y":-262.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":180.9868621826172,"width":278.99591064453125,"x":252.00498962402344,"y":-261.9845886230469,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_647.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":170.74034118652344,"width":278.82464599609375,"x":252.120361328125,"y":-260.5289001464844,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_648.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:649","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.409164428710938,"width":228.6171112060547,"x":252.0047149658203,"y":-136.35848999023438,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_649.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:650","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.068038940429688,"width":228.6171112060547,"x":252.0047149658203,"y":-133.01736450195312,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_650.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:651","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":133.74151611328125,"width":91.8858642578125,"x":368.9051513671875,"y":-220.7479248046875,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_651.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.8555908203125,"x":379.4194030761719,"y":-118.96939086914062,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_652.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.8555908203125,"x":379.4194030761719,"y":-118.96939086914062,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_653.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560516357421875,"x":409.4254150390625,"y":-94.70497131347656,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_654.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560516357421875,"x":409.4254150390625,"y":-94.70497131347656,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_655.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.170135498046875,"x":412.7316589355469,"y":-95.4290771484375,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_656.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:657","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.170135498046875,"x":412.7316589355469,"y":-95.4290771484375,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_657.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.5897216796875,"width":34.017181396484375,"x":419.4761962890625,"y":-92.4639892578125,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_658.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:659","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2659454345703125,"width":6.48052978515625,"x":421.76861572265625,"y":-91.22409057617188,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_659.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:660","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49969482421875,"x":421.51629638671875,"y":-91.24188232421875,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_660.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:661","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49969482421875,"x":421.51629638671875,"y":-91.24188232421875,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_661.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06097412109375,"width":33.96185302734375,"x":419.5318603515625,"y":-92.4639892578125,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_662.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:663","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.19842529296875,"width":37.073333740234375,"x":418.50347900390625,"y":-95.13943481445312,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_663.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:664","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.509490966796875,"width":40.68988037109375,"x":417.37890625,"y":-99.28091430664062,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_664.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:665","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.14971923828125,"width":82.16317749023438,"x":377.29443359375,"y":-116.43988037109375,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_665.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.8724365234375,"width":33.6077880859375,"x":369.33160400390625,"y":-142.47586059570312,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_666.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.557296752929688,"width":22.937591552734375,"x":392.996826171875,"y":-157.87127685546875,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_667.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:668","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.559844970703125,"width":22.937591552734375,"x":392.996826171875,"y":-157.77981567382812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_668.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:669","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.38824462890625,"width":14.48297119140625,"x":393.50140380859375,"y":-141.68951416015625,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_669.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:670","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.370391845703125,"width":10.08172607421875,"x":392.85760498046875,"y":-140.02227783203125,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_670.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:671","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.38824462890625,"width":14.481842041015625,"x":392.996826171875,"y":-141.68951416015625,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_671.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:672","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.390426635742188,"width":14.481842041015625,"x":392.996826171875,"y":-141.5113067626953,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_672.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:673","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.910018920898438,"width":19.3140869140625,"x":403.95880126953125,"y":-200.8544464111328,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_673.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.314910888671875,"width":10.6134033203125,"x":403.953857421875,"y":-200.8544464111328,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_674.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:675","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.509552001953125,"width":24.124755859375,"x":390.92333984375,"y":-215.29299926757812,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_675.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.017349243164062,"width":46.52880859375,"x":412.9287109375,"y":-116.447509765625,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_676.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":98.12994384765625,"width":56.22943115234375,"x":404.12921142578125,"y":-195.21307373046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_677.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:678","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.6978759765625,"width":29.449737548828125,"x":391.7159729003906,"y":-129.2290802001953,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_678.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:679","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.9834747314453125,"width":6.525238037109375,"x":436.93780517578125,"y":-171.79318237304688,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_679.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:680","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.237457275390625,"width":25.26513671875,"x":427.865478515625,"y":-129.85411071777344,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_680.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:681","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.13446044921875,"width":23.6849365234375,"x":391.3631286621094,"y":-215.2978057861328,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_681.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:682","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.74609375,"width":35.163909912109375,"x":384.1615905761719,"y":-219.7036590576172,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_682.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.92510986328125,"width":13.24212646484375,"x":407.9235534667969,"y":-129.2290802001953,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_683.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:684","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6055908203125,"width":29.44512939453125,"x":406.78350830078125,"y":-192.8612823486328,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_684.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.36421966552734,"width":25.838470458984375,"x":409.3843994140625,"y":-193.4024658203125,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_685.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6106948852539,"width":29.43609619140625,"x":406.28216552734375,"y":-193.4024658203125,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_686.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:687","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.9705810546875,"x":406.53033447265625,"y":-132.5371551513672,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_687.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:688","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.97113037109375,"x":406.2774353027344,"y":-132.27035522460938,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_688.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:689","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.058914184570312,"width":35.1466064453125,"x":384.18316650390625,"y":-208.0164794921875,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_689.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:692","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.3701324462890625,"width":4.471710205078125,"x":367.3538513183594,"y":-95.16229248046875,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_692.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:693","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":111.50717163085938,"width":54.518341064453125,"x":318.8424987792969,"y":-215.30555725097656,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_693.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.53302001953125,"x":336.14801025390625,"y":-118.88555908203125,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_694.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.53302001953125,"x":336.14801025390625,"y":-118.88555908203125,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_695.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:696","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.656280517578125,"width":12.87744140625,"x":322.8120422363281,"y":-139.84442138671875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_696.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:697","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.322845458984375,"width":14.5084228515625,"x":312.27801513671875,"y":-142.8756103515625,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_697.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:698","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.331558227539062,"width":14.506011962890625,"x":312.78497314453125,"y":-142.78919982910156,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_698.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:699","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.45648193359375,"width":20.59588623046875,"x":300.2002258300781,"y":-208.5166015625,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_699.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:700","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.34686279296875,"width":36.99432373046875,"x":307.67156982421875,"y":-92.84257507324219,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_700.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.862640380859375,"width":7.504119873046875,"x":301.9912414550781,"y":-93.82585144042969,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_701.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.508941650390625,"x":301.7341613769531,"y":-93.82585144042969,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_702.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:703","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9962615966796875,"width":7.17010498046875,"x":342.4722900390625,"y":-92.48686218261719,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_703.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:704","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.167694091796875,"x":342.726806640625,"y":-92.48686218261719,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_704.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:705","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.508941650390625,"x":301.7341613769531,"y":-93.82585144042969,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_705.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:706","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.167694091796875,"x":342.726806640625,"y":-92.48686218261719,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_706.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:707","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.960113525390625,"width":12.695343017578125,"x":307.56341552734375,"y":-208.52423095703125,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_707.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:708","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.329742431640625,"width":26.791839599609375,"x":307.07806396484375,"y":-222.33953857421875,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_708.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:709","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.241928100585938,"width":26.2550048828125,"x":307.0504455566406,"y":-222.3343963623047,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_709.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:710","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.654052734375,"width":33.68634033203125,"x":303.08172607421875,"y":-226.19964599609375,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_710.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:711","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7603607177734375,"width":2.88165283203125,"x":315.3001403808594,"y":-139.21942138671875,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_711.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:712","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.28337097167969,"width":97.68414306640625,"x":277.45086669921875,"y":-124.84367370605469,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_712.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:713","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5286865234375,"width":7.82342529296875,"x":302.9406433105469,"y":-114.33245849609375,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_713.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.7091217041015625,"width":4.710693359375,"x":316.6763916015625,"y":-109.70063781738281,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_714.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.860107421875,"width":4.80572509765625,"x":365.24871826171875,"y":-100.24639892578125,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_715.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:716","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.226776123046875,"width":47.598114013671875,"x":302.29638671875,"y":-93.82585144042969,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_716.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:717","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.59661865234375,"width":55.92401123046875,"x":298.0195007324219,"y":-95.69841003417969,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_717.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:718","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.663070678710938,"width":41.40667724609375,"x":277.4341735839844,"y":-124.85383605957031,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_718.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:719","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.9999771118164,"width":47.22564697265625,"x":272.55889892578125,"y":-197.13336181640625,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_719.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:720","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.09344482421875,"width":13.7567138671875,"x":300.2594299316406,"y":-134.13531494140625,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_720.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:721","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.346038818359375,"width":12.6510009765625,"x":300.38616943359375,"y":-145.46206665039062,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_721.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:722","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.183670043945312,"width":6.81390380859375,"x":306.8811950683594,"y":-151.17376708984375,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_722.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:723","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.5859375,"width":11.068878173828125,"x":294.0621032714844,"y":-175.78375244140625,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_723.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:724","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.262794494628906,"width":20.615631103515625,"x":280.277587890625,"y":-150.18795776367188,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_724.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:725","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.871017456054688,"width":14.134521484375,"x":358.07861328125,"y":-119.15995788574219,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_725.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:726","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":44.62644958496094,"width":15.66656494140625,"x":304.1178283691406,"y":-192.7512969970703,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_726.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:727","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9530487060546875,"width":11.93017578125,"x":347.91455078125,"y":-116.46163940429688,"z":78.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_727.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:728","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.1304931640625,"width":3.635101318359375,"x":358.1316223144531,"y":-119.15995788574219,"z":79.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_728.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:729","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":82.25939178466797,"width":56.373870849609375,"x":304.8919982910156,"y":-193.28884887695312,"z":80.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_729.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:730","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7742156982421875,"width":6.64276123046875,"x":327.545654296875,"y":-152.832275390625,"z":81.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_730.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:731","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.4514007568359375,"width":5.36956787109375,"x":326.36334228515625,"y":-142.00094604492188,"z":82.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_731.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:732","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.759552001953125,"width":11.0531005859375,"x":313.20538330078125,"y":-183.27651977539062,"z":83.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_732.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:733","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.236785888671875,"width":33.670867919921875,"x":303.0766906738281,"y":-217.96829223632812,"z":84.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_733.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:738","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.539520263671875,"x":257.7023010253906,"y":-151.25204467773438,"z":85.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_738.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:739","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.539520263671875,"x":257.7023010253906,"y":-151.25204467773438,"z":86.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_739.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:740","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.515533447265625,"width":1.85052490234375,"x":257.896240234375,"y":-150.68356323242188,"z":87.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_740.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:741","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7698211669921875,"width":0.849700927734375,"x":260.0867919921875,"y":-151.25143432617188,"z":88.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_741.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:742","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0737457275390625,"width":1.03497314453125,"x":264.12030029296875,"y":-151.15646362304688,"z":89.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_742.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:743","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.159088134765625,"width":1.83709716796875,"x":265.5904541015625,"y":-150.53799438476562,"z":90.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_743.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:744","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.506683349609375,"width":0.812164306640625,"x":258.93475341796875,"y":-149.67471313476562,"z":91.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_744.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:745","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.5869140625,"width":0.415679931640625,"x":260.0927429199219,"y":-150.06854248046875,"z":92.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_745.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:746","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.79107666015625,"width":3.365081787109375,"x":258.9144287109375,"y":-149.8669891357422,"z":93.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_746.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:747","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.66058349609375,"width":0.492584228515625,"x":264.6604919433594,"y":-149.74331665039062,"z":94.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_747.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:748","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.242431640625,"width":0.747283935546875,"x":265.5904541015625,"y":-149.62643432617188,"z":95.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_748.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:749","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.27117919921875,"width":4.085052490234375,"x":262.31060791015625,"y":-149.54736328125,"z":96.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_749.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:750","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.738006591796875,"x":258.3196716308594,"y":-136.4829864501953,"z":97.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_750.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:751","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.499298095703125,"x":257.4065246582031,"y":-141.668701171875,"z":98.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_751.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:752","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.738006591796875,"x":258.3196716308594,"y":-136.4829864501953,"z":99.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_752.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:753","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.499298095703125,"x":257.4065246582031,"y":-141.668701171875,"z":100.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_753.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:754","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.738006591796875,"x":258.6967468261719,"y":-136.4829864501953,"z":101.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_754.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:755","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2195587158203125,"width":1.3768310546875,"x":260.9027404785156,"y":-146.29547119140625,"z":102.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_755.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:756","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.663604736328125,"width":1.802001953125,"x":262.31060791015625,"y":-145.93978881835938,"z":103.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_756.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:757","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.356536865234375,"width":4.884918212890625,"x":259.2302551269531,"y":-146.12835693359375,"z":104.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_757.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:758","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":259.888427734375,"y":-148.53390502929688,"z":105.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_758.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:759","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":259.87408447265625,"y":-147.60397338867188,"z":106.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_759.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:760","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.379638671875,"x":265.34295654296875,"y":-148.35093688964844,"z":107.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_760.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:761","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014739990234375,"width":0.379638671875,"x":260.9432678222656,"y":-143.58192443847656,"z":108.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_761.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:762","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":264.9513244628906,"y":-146.80618286132812,"z":109.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_762.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:763","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":263.002685546875,"y":-144.74560546875,"z":110.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_763.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:764","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":260.5324401855469,"y":-148.135009765625,"z":111.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_764.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:765","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":264.8241271972656,"y":-147.75387573242188,"z":112.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_765.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:766","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":264.17999267578125,"y":-146.20909118652344,"z":113.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_766.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:767","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":262.20001220703125,"y":-143.73182678222656,"z":114.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_767.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:768","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":261.79168701171875,"y":-144.71258544921875,"z":115.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_768.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:769","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":260.8159484863281,"y":-146.9230499267578,"z":116.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_769.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:770","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.581817626953125,"width":5.738006591796875,"x":258.6967468261719,"y":-136.4829864501953,"z":117.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_770.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:771","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.499298095703125,"x":257.7837829589844,"y":-141.668701171875,"z":118.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_771.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:772","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.379638671875,"x":262.4524230957031,"y":-142.8349151611328,"z":119.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_772.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:773","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.40142822265625,"width":0.379638671875,"x":261.3205261230469,"y":-142.58340454101562,"z":120.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_773.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:774","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.2418670654296875,"width":6.84332275390625,"x":484.2117919921875,"y":-175.2761688232422,"z":121.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_774.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:775","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0942840576171875,"width":7.04278564453125,"x":483.43548583984375,"y":-180.99705505371094,"z":122.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_775.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:776","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.396514892578125,"width":6.802490234375,"x":483.21209716796875,"y":-187.5743408203125,"z":123.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_776.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:777","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2618408203125,"width":6.393951416015625,"x":483.28179931640625,"y":-193.83880615234375,"z":124.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_777.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:778","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2097320556640625,"width":6.271484375,"x":483.71185302734375,"y":-199.59494018554688,"z":125.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_778.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:779","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.639190673828125,"width":5.478485107421875,"x":484.3150329589844,"y":-205.41445922851562,"z":126.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_779.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:780","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2234344482421875,"width":4.6807861328125,"x":484.82421875,"y":-211.91363525390625,"z":127.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_780.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:781","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0074615478515625,"width":4.190521240234375,"x":485.03826904296875,"y":-218.01150512695312,"z":128.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_781.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:782","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.194686889648438,"width":1.782989501953125,"x":485.0334777832031,"y":-226.58917236328125,"z":129.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_782.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:783","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.892318725585938,"width":2.90008544921875,"x":482.06109619140625,"y":-234.63327026367188,"z":130.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_783.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:784","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.567901611328125,"width":6.2618408203125,"x":477.69036865234375,"y":-166.89166259765625,"z":131.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_784.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:785","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1551513671875,"width":7.689117431640625,"x":476.6210021972656,"y":-173.49844360351562,"z":132.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_785.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:786","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2594451904296875,"width":7.669891357421875,"x":476.046875,"y":-179.70408630371094,"z":133.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_786.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:787","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.728424072265625,"width":6.53814697265625,"x":477.1351318359375,"y":-188.0205841064453,"z":134.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_787.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:788","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9545135498046875,"width":5.61785888671875,"x":477.8175964355469,"y":-194.54420471191406,"z":135.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_788.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:789","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.454254150390625,"width":6.007080078125,"x":478.24774169921875,"y":-200.15451049804688,"z":136.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_789.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:790","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9043731689453125,"width":3.892578125,"x":480.7996826171875,"y":-206.79396057128906,"z":137.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_790.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:791","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.5308837890625,"width":4.241058349609375,"x":480.7084045410156,"y":-212.34811401367188,"z":138.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_791.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:792","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.640106201171875,"width":3.18621826171875,"x":482.265380859375,"y":-218.25033569335938,"z":139.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_792.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.307937622070312,"width":4.2554931640625,"x":481.04461669921875,"y":-226.00732421875,"z":140.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_793.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:794","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.194015502929688,"width":7.28546142578125,"x":477.47637939453125,"y":-232.21697998046875,"z":141.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_794.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:795","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.97296142578125,"width":7.44891357421875,"x":475.35943603515625,"y":-236.32797241210938,"z":142.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_795.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:796","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.97601318359375,"width":2.87078857421875,"x":482.41436767578125,"y":-228.92413330078125,"z":143.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_796.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:797","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.387466430664062,"width":2.0880126953125,"x":483.1640625,"y":-211.71798706054688,"z":144.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_797.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:798","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.034042358398438,"width":2.0447998046875,"x":483.0726013183594,"y":-187.12579345703125,"z":145.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_798.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:799","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.219207763671875,"width":5.440093994140625,"x":502.42041015625,"y":-182.61740112304688,"z":146.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_799.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:800","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.465606689453125,"width":7.54022216796875,"x":502.80743408203125,"y":-188.40798950195312,"z":147.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_800.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.13604736328125,"width":7.73236083984375,"x":503.5570373535156,"y":-194.58685302734375,"z":148.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_801.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:802","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.921234130859375,"width":7.65069580078125,"x":504.5206298828125,"y":-200.73797607421875,"z":149.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_802.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:803","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.80780029296875,"width":7.540191650390625,"x":506.0704040527344,"y":-206.20916748046875,"z":150.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_803.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:804","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.376251220703125,"width":6.586212158203125,"x":507.9709167480469,"y":-211.88772583007812,"z":151.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_804.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:805","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0902252197265625,"width":5.882232666015625,"x":509.6603698730469,"y":-218.26046752929688,"z":152.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_805.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:806","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9936981201171875,"width":5.2574462890625,"x":511.20050048828125,"y":-224.28721618652344,"z":153.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_806.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:807","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.724624633789062,"width":3.25604248046875,"x":511.8515625,"y":-233.36288452148438,"z":154.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_807.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:808","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.235321044921875,"width":1.40521240234375,"x":512.6807861328125,"y":-242.10824584960938,"z":155.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_808.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:809","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.867462158203125,"width":3.02044677734375,"x":494.6614990234375,"y":-175.76087951660156,"z":156.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_809.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:810","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.7657623291015625,"width":7.244537353515625,"x":495.1710510253906,"y":-182.8802490234375,"z":157.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_810.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:811","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.8140869140625,"width":7.285400390625,"x":495.7982177734375,"y":-189.03988647460938,"z":158.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_811.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:812","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9170684814453125,"width":5.34637451171875,"x":498.77783203125,"y":-197.5251922607422,"z":159.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_812.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:813","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.94354248046875,"width":4.18572998046875,"x":500.72894287109375,"y":-203.76535034179688,"z":160.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_813.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:814","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.597976684570312,"width":4.642333984375,"x":502.23541259765625,"y":-209.18482971191406,"z":161.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_814.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:815","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.5115966796875,"width":2.58148193359375,"x":505.9110107421875,"y":-215.14295959472656,"z":162.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_815.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:816","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.254989624023438,"width":2.7984619140625,"x":507.00592041015625,"y":-220.59800720214844,"z":163.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_816.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:817","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.074600219726562,"width":2.131622314453125,"x":509.44610595703125,"y":-226.0352783203125,"z":164.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_817.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:818","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.016815185546875,"width":2.4473876953125,"x":509.7239990234375,"y":-233.89390563964844,"z":165.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_818.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:819","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.604141235351562,"width":5.52679443359375,"x":507.7232666015625,"y":-240.7463836669922,"z":166.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_819.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.378005981445312,"width":5.810089111328125,"x":506.4550476074219,"y":-245.22830200195312,"z":167.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_820.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:821","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.189422607421875,"width":2.218780517578125,"x":510.9458923339844,"y":-236.43975830078125,"z":168.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_821.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.457550048828125,"width":6.992340087890625,"x":504.35955810546875,"y":-218.98208618164062,"z":169.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_822.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.145172119140625,"width":2.806549072265625,"x":502.0504455566406,"y":-195.38333129882812,"z":170.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_823.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"479:824","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":247.0,"y":-270.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_824.png","prototypeNodeUUID":"492:3122","type":"image"}]},"isVisible":true},{"UUID":"479:826","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:826.png","type":"screen","designNode":{"UUID":"479:826","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1818.0,"y":-320.0,"z":15.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:827","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2043.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2120.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2086.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_827;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_827;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2062.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_827;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_827;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2043.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_827;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_827;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:829","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":1844.0,"y":35.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"479:830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":1954.0,"y":276.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"479:831","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":1843.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_831.png","prototypeNodeUUID":"479:559","type":"image"},{"UUID":"479:832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":1923.0,"y":-284.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"479:833","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":1844.0,"y":22.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:834","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":1844.0,"y":87.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:835","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":1844.0,"y":152.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:836","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":2043.0,"y":152.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:837","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":1843.0,"y":199.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:838","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":1967.0,"y":211.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"479:839","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2130.0,"y":56.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_839.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:842","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":1844.0,"y":-26.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"500:416","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"479:843","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":1842.0,"y":32.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"479:844","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":1842.0,"y":97.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"479:845","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":2043.0,"y":98.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"479:846","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 158","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.25,"width":245.0,"x":1875.0,"y":-223.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_846.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:854","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"history","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:854.png","type":"screen","designNode":{"UUID":"479:854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"history","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2618.0,"y":-320.0,"z":18.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:855","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2843.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2920.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2886.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_855;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_855;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2862.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_855;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_855;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2843.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_855;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_855;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:856","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2905.0,"y":-196.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_856.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:857","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2905.0,"y":-120.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_857.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:858","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":2645.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_858.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:859","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":181.0,"x":2709.0,"y":-285.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"479:860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":2643.0,"y":-206.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:861","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":2643.0,"y":-130.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"JABI LAKE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":2676.0,"y":-204.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"JABI LAKE "},{"UUID":"479:863","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"MAITAMA","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":2677.0,"y":-126.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"MAITAMA "},{"UUID":"479:864","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 7:41 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":2677.0,"y":-185.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 7:41 AM "},{"UUID":"479:865","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 8:58 PM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":106.0,"x":2677.0,"y":-107.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 8:58 PM "},{"UUID":"479:866","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"DELIVERY COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":123.0,"x":2677.0,"y":-170.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"DELIVERY COMPLETED "},{"UUID":"479:867","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":97.0,"x":2677.0,"y":-92.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED "},{"UUID":"479:868","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2910.0,"y":-107.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_868.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:869","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2911.0,"y":-184.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_869.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:870","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Support","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:870.png","type":"screen","designNode":{"UUID":"479:870","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3017.0,"y":-320.0,"z":19.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:871","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3242.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3319.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3285.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_871;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_871;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3261.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_871;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_871;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3242.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_871;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_871;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:872","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":3044.0,"y":-270.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_872.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:873","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":197.0,"x":3100.0,"y":-285.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi Support"},{"UUID":"479:874","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":3001.0,"y":-208.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:875","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 26","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3003.0,"y":-157.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:876","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 27","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3003.0,"y":-100.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:877","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 31","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3003.0,"y":8.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:878","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 33","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":2997.0,"y":116.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:879","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 30","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":2997.0,"y":-49.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3003.0,"y":59.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 34","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":3004.0,"y":167.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:882","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Reach us: +2348136192991","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":189.0,"x":3042.0,"y":-193.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Reach us: +2348136192991"},{"UUID":"479:883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social Media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":186.0,"x":3042.0,"y":-143.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social Media"},{"UUID":"479:884","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":3042.0,"y":-87.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"479:885","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":3042.0,"y":21.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"479:886","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":100.0,"x":3042.0,"y":129.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"479:887","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":83.0,"x":3042.0,"y":-37.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"479:888","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":3042.0,"y":70.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"479:889","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":229.0,"x":3042.0,"y":180.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"}]},"isVisible":true},{"UUID":"479:890","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"About","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:890.png","type":"screen","designNode":{"UUID":"479:890","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3418.0,"y":-320.0,"z":20.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3643.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3720.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3686.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_891;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_891;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3662.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_891;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_891;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3643.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_891;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_891;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:892","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":3445.0,"y":-270.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_892.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:893","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":93.0,"x":3552.0,"y":-285.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"479:894","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 35","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":3403.0,"y":-208.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:895","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 36","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3405.0,"y":-157.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:896","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 37","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3405.0,"y":-100.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:897","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 38","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3405.0,"y":8.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:898","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 39","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":3399.0,"y":112.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:899","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 40","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":3399.0,"y":-49.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:900","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 41","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3405.0,"y":59.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:901","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 42","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":3406.0,"y":166.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:902","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 43","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":3406.0,"y":217.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:903","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate Us Now","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":96.0,"x":3444.0,"y":-194.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate Us Now"},{"UUID":"479:904","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Version 0.86","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":86.0,"x":3555.0,"y":-246.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Version 0.86"},{"UUID":"479:905","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":186.0,"x":3444.0,"y":-143.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social media"},{"UUID":"479:906","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":140.0,"x":3444.0,"y":-87.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"479:907","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":43.0,"x":3444.0,"y":22.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"479:908","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":100.0,"x":3443.0,"y":125.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"479:909","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":3444.0,"y":-39.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"479:910","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":116.0,"x":3442.0,"y":73.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"479:911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":229.0,"x":3443.0,"y":177.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"},{"UUID":"479:912","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Legal","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":42.0,"x":3442.0,"y":229.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Legal"}]},"isVisible":true},{"UUID":"479:913","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"feedback","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:913.png","type":"screen","designNode":{"UUID":"479:913","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"feedback","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3819.0,"y":-320.0,"z":21.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:914","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":3656.0,"y":-839.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_914.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:915","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 51","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3819.0,"y":-320.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:916","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":168.0,"x":3915.0,"y":-89.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED"},{"UUID":"479:917","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"How is your trip?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":150.0,"x":3929.0,"y":-8.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"How is your trip?"},{"UUID":"479:918","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":100.0,"width":100.0,"x":3949.0,"y":-196.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_918.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:919","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 157","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":162.0,"x":3921.0,"y":27.0,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 156","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":3921.0,"y":27.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_920.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:926","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":3921.0,"y":27.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_926.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:927","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 52","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":115.0,"width":310.0,"x":3844.0,"y":83.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Additional Information","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":3854.0,"y":92.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Additional Information"},{"UUID":"479:929","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 53","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":110.0,"x":4044.0,"y":239.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:930","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"SUBMIT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":60.0,"x":4060.0,"y":243.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"SUBMIT"},{"UUID":"479:931","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":4132.0,"y":247.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_931.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:932","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:932.png","type":"screen","designNode":{"UUID":"479:932","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":620.0,"y":-320.0,"z":22.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:933","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":239.0,"y":-544.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_933.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:934","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":915.0,"y":-12.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:935","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":915.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_935.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:936","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":929.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_936.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:938","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":645.0,"y":-9.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_938.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:939","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":703.0,"y":-9.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_939.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:940","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":655.0,"y":1.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_940.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:941","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":714.0,"y":2.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_941.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:944","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":688.0,"y":78.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:945","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":814.0,"y":78.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:946","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":703.0,"y":119.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"479:947","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":820.0,"y":119.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":711.0,"y":94.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_948.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:954","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":839.0,"y":94.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_954.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:960","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":644.0,"y":227.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:961","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":751.0,"y":236.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:962","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.0843505859375,"x":828.0,"y":0.000011086463928222656,"z":14.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.0843505859375,"x":828.0,"y":0.000011086463928222656,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_963.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:964","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625297546386719,"width":12.62530517578125,"x":842.729248046875,"y":14.72950553894043,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_964.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:966","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":845.0,"y":-303.0,"z":15.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":922.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":888.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_966;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_966;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":864.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_966;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_966;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":845.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_966;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_966;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:967","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":647.0,"y":-270.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_967.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:968","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":632.0,"y":-220.0,"z":17.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"438:117","parameters":null,"overrideValues":[{"UUID":"443:118","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":645.0,"y":-56.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},"valueName":"Car model: Honda Civic","type":"stringValue"},{"UUID":"443:119","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car colour: Grey","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":646.0,"y":-36.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"},"valueName":"Car colour: Grey","type":"stringValue"},{"UUID":"441:111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;441:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47808837890625,"width":9.92523193359375,"x":720.0374145507812,"y":-102.19964599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_968;441_111.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_968;441_111.png","type":"image"},{"UUID":"441:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;441:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.149429321289062,"width":24.97125244140625,"x":907.9883422851562,"y":-96.28349304199219,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_968;441_116.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_968;441_116.png","type":"image"},{"UUID":"443:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 438","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":898.0,"y":-103.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_968;443_117.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_968;443_117.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:969","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":269.0,"x":645.0,"y":21.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:970","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":669.0,"y":35.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"479:971","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":800.0,"y":21.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:972","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":841.0,"y":33.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"479:973","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5 MINs","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":68.0,"x":766.0,"y":-173.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5 MINs "},{"UUID":"479:974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"GXM 507 AJ","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":84.0,"x":713.0,"y":-89.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"GXM 507 AJ "},{"UUID":"479:975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your rider will be at your location in","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":286.0,"x":656.0,"y":-197.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your rider will be at your location in "},{"UUID":"479:976","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tunde Kareem","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":91.0,"x":713.0,"y":-121.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Tunde Kareem"},{"UUID":"479:977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5.0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":736.0,"y":-104.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5.0"},{"UUID":"479:978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 148","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":656.0,"y":126.0,"z":27.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:979","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want someone to join your ride?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":656.0,"y":126.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want someone to join your ride?"}],"type":"group"},{"UUID":"479:980","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 149","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":656.0,"y":179.0,"z":28.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:981","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want to negotiate with driver?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":656.0,"y":179.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want to negotiate with driver?"}],"type":"group"},{"UUID":"479:982","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":310.0,"x":645.0,"y":117.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:983","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 48","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":311.0,"x":644.0,"y":172.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 154","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":865.0,"y":124.0,"z":31.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:985","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 151","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":124.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":124.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"479:987","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":865.0,"y":138.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"479:988","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 153","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":865.0,"y":179.0,"z":32.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:989","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 152","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":179.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:990","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":179.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"479:991","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":865.0,"y":193.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"479:992","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":33.0,"x":698.0,"y":243.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"479:993","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":31.0,"x":787.0,"y":243.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Card"},{"UUID":"479:994","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 435","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":764.0,"y":244.0,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_994.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:995","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 436","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":675.0,"y":244.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_995.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:996","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 49","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":84.0,"x":841.0,"y":236.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:999","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:997","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Confirm","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":50.0,"x":858.0,"y":240.0,"z":38.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Confirm "},{"UUID":"479:998","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":64.0,"x":645.0,"y":-127.0,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_998.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:999","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"travel screen","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/479:999.png","type":"screen","designNode":{"UUID":"479:999","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"travel screen","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:913","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1020.0,"y":-320.0,"z":25.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:1000","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1681.379638671875,"width":1697.7115478515625,"x":413.2889099121094,"y":-796.6085205078125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_1000.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1001","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1245.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1322.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1288.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1001;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1001;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1264.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1001;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1001;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1245.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1001;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1001;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:1002","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":253.50001525878906,"width":82.0,"x":1093.5,"y":-166.5,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1002.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1003","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.2279052734375,"x":1148.0,"y":-195.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1003.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 155","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":1140.0,"y":71.99999237060547,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:1007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":1140.0,"y":71.99999237060547,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1007.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1008","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.047477722167969,"width":9.0474853515625,"x":1150.55517578125,"y":82.55551147460938,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1008.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:1010","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 46","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":240.0,"x":1080.0,"y":160.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:1011","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1hrs 15 mins","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":122.0,"x":1139.0,"y":169.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"1hrs 15 mins "},{"UUID":"479:1012","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Approximated Travel Time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":158.0,"x":1121.0,"y":139.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Approximated Travel Time "}]},"isVisible":true},{"UUID":"481:1256","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logo","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/481:1256.png","type":"screen","designNode":{"UUID":"481:1256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"logo","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:1065","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4179.0,"y":378.0,"z":28.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"481:1257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4571.0,"y":378.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/481_1257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"WhatsApp_Image_2021-07-23_at_8.10 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":91.0,"width":200.0,"x":-4099.0,"y":636.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/481_1258.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"481:1259","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/481:1259.png","type":"screen","designNode":{"UUID":"481:1259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:169","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-3779.0,"y":378.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"481:1260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3885.0,"y":177.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"481:1261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-3554.0,"y":395.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-3477.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-3511.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I481_1261;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I481_1261;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-3534.125,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I481_1261;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I481_1261;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-3554.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I481_1261;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I481_1261;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"481:1262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":-3752.0,"y":799.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"481:1263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our rides are negotiable and convenient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":263.0,"x":-4042.0,"y":849.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our rides are negotiable and convenient"},{"UUID":"481:1264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":-4041.0,"y":816.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"481:1265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-3673.0,"y":964.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"481:1266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-3673.0,"y":964.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"481:1267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 147","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":56.08740234375,"x":-3491.0,"y":908.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"481:1268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-3491.0,"y":908.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"481:1269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-3445.0,"y":912.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1269.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"481:1270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":-3753.0,"y":425.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"481:1271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":268.20269775390625,"width":406.095703125,"x":-3777.095703125,"y":464.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.2197265625,"width":0.056884765625,"x":-3754.967529296875,"y":658.1862182617188,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.21978759765625,"width":3.597900390625,"x":-3691.346923828125,"y":681.002197265625,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1273.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.181304931640625,"width":8.8701171875,"x":-3561.126220703125,"y":486.261962890625,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":223.26889038085938,"width":75.3984375,"x":-3612.343017578125,"y":506.6949157714844,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":225.50778198242188,"width":30.410888671875,"x":-3536.944580078125,"y":506.6949157714844,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.720458984375,"y":528.8755493164062,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3580.34619140625,"y":528.8755493164062,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.97216796875,"y":528.8755493164062,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.403564453125,"y":554.859375,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1280.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3580.029541015625,"y":554.859375,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.655517578125,"y":554.859375,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.086669921875,"y":580.84326171875,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.712646484375,"y":580.84326171875,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1284.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.338623046875,"y":580.84326171875,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1285.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.77001953125,"y":606.8270874023438,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1286.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.39599609375,"y":606.8270874023438,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1287.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.021728515625,"y":606.8270874023438,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.453125,"y":632.8109130859375,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1289.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.0791015625,"y":632.8109130859375,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1290.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1291","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.705078125,"y":632.8109130859375,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1291.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.13623046875,"y":658.7947387695312,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1292.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3578.76220703125,"y":658.7947387695312,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1293.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.38818359375,"y":658.7947387695312,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1294.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1295","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3596.819580078125,"y":684.778564453125,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1295.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1296","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3578.445556640625,"y":684.778564453125,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1296.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1297","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.071533203125,"y":684.778564453125,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1297.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1298","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.92083740234375,"width":11.403076171875,"x":-3596.501220703125,"y":710.7617797851562,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1298.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1299","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.409912109375,"width":11.406982421875,"x":-3578.1298828125,"y":710.76171875,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1299.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3559.754638671875,"y":710.762451171875,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1300.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.1463623046875,"width":8.8701171875,"x":-3457.746826171875,"y":599.2220458984375,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1301.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":120.96282958984375,"width":75.398681640625,"x":-3517.304443359375,"y":611.2398681640625,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1302.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":110.17413330078125,"width":30.41064453125,"x":-3441.90576171875,"y":611.2398681640625,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1303.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3502.414794921875,"y":632.8109130859375,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1304.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3484.040771484375,"y":632.8109130859375,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1305.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.666748046875,"y":632.8109130859375,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1306.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3502.09814453125,"y":658.7947387695312,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1307.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3483.72412109375,"y":658.7947387695312,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1308.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.349853515625,"y":658.7947387695312,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1309.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3501.78125,"y":684.778564453125,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1310.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3483.4072265625,"y":684.778564453125,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1311.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.033203125,"y":684.778564453125,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1312.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3501.464599609375,"y":710.762451171875,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1313.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3483.09033203125,"y":710.762451171875,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1314.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3464.71630859375,"y":710.762451171875,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1315.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.06048583984375,"width":45.384765625,"x":-3508.379638671875,"y":735.4152221679688,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1316.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":73.2117919921875,"width":167.767578125,"x":-3747.372314453125,"y":672.568603515625,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1317.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":52.6849365234375,"width":35.381591796875,"x":-3746.602783203125,"y":685.2234497070312,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1318.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.35693359375,"width":50.770751953125,"x":-3628.74365234375,"y":695.64306640625,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1319.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":79.509521484375,"width":295.288330078125,"x":-3747.69775390625,"y":666.9268188476562,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1320.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.98504638671875,"width":206.461669921875,"x":-3730.58154296875,"y":621.5303344726562,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1321.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.4842529296875,"width":293.618896484375,"x":-3744.879150390625,"y":652.0650634765625,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1322.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.6737060546875,"width":12.59228515625,"x":-3703.9609375,"y":666.795654296875,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1323.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.54595947265625,"width":11.54296875,"x":-3563.20849609375,"y":715.9970703125,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1324.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.8516845703125,"width":30.029052734375,"x":-3581.661865234375,"y":666.5914306640625,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1325.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.84014892578125,"width":24.343017578125,"x":-3479.78759765625,"y":663.2792358398438,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1326.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.721435546875,"width":28.926513671875,"x":-3722.55224609375,"y":628.3382568359375,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1327.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.9222412109375,"width":44.819580078125,"x":-3690.07958984375,"y":623.17919921875,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1328.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.51434326171875,"width":99.5126953125,"x":-3635.99560546875,"y":623.4983520507812,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1329.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.985595703125,"width":151.693359375,"x":-3712.80322265625,"y":614.0552368164062,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1330.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.737060546875,"width":17.839111328125,"x":-3743.9609375,"y":693.954833984375,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1331.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":46.97100830078125,"width":28.332763671875,"x":-3624.59619140625,"y":706.2879638671875,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1332.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.18890380859375,"width":11.805419921875,"x":-3660.011962890625,"y":654.7661743164062,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1333.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.645263671875,"width":20.46240234375,"x":-3674.572021484375,"y":647.37744140625,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1334.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.01025390625,"width":85.916259765625,"x":-3539.8603515625,"y":685.032958984375,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1335.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06146240234375,"width":68.810546875,"x":-3530.766357421875,"y":688.3115234375,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1336.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.17645263671875,"width":74.845458984375,"x":-3534.289794921875,"y":690.8057861328125,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1337.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0953369140625,"width":80.26806640625,"x":-3537.08740234375,"y":694.193603515625,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1338.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1339","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 142","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.6173095703125,"width":93.194580078125,"x":-3779.0,"y":595.8372802734375,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1339.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"492:1439","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:1439.png","type":"screen","designNode":{"UUID":"492:1439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2580.0,"y":-320.0,"z":29.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:1603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2355.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1604","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2312.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1604.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1605","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-2336.0,"y":-302.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:1606","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2335.125,"y":-301.25,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1606.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1608","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2355.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1608.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1609","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2278.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1441","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":-2529.0,"y":-199.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"492:1442","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":-139.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"492:1443","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":-139.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1443.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":-2517.0,"y":-128.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"492:1445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7034675467","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":-2468.0,"y":-128.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7034675467"},{"UUID":"492:1446","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-2304.0,"y":-125.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"492:1447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":-2537.0,"y":-121.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1447.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1448","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":-2501.0,"y":20.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"492:1449","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2553.0,"y":-58.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:365","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:1450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":-2423.0,"y":-50.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"492:1451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2358.0,"y":20.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1451.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":20.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":20.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1456","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-2398.0,"y":23.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1456.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":20.0,"z":8.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":20.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1463.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1465","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326332092285,"width":23.0,"x":-2318.0,"y":23.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1465.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1538","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2580.0,"y":83.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1539","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2580.0,"y":83.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1540","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2574.0,"y":99.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1541","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":99.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1542","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":141.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:1543","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2557.0,"y":184.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:1544","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2521.0,"y":227.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:1545","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":99.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:1546","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":141.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:1547","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2522.0,"y":184.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:1548","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2486.0,"y":227.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:1549","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":99.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:1550","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":141.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:1551","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2487.0,"y":184.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:1552","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2451.0,"y":227.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:1553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":99.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":141.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:1555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2452.0,"y":184.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:1556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2416.0,"y":227.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:1557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":99.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1558","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":141.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:1559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2417.0,"y":184.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:1560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2381.0,"y":227.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:1561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":99.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:1562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":141.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:1563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2382.0,"y":184.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:1564","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2346.0,"y":227.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:1565","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":99.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:1566","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":141.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:1567","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2347.0,"y":184.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:1568","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2311.0,"y":227.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:1569","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":99.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:1570","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":141.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:1571","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2312.0,"y":184.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:1572","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":99.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:1573","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":141.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:1574","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2277.0,"y":184.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:1575","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":99.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:1576","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":141.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:1577","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2555.66015625,"y":238.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1577.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1582","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-2266.0,"y":237.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1583","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-2260.0,"y":238.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1584","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-2266.0,"y":237.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1584.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-2257.0,"y":242.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1585.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1588","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2451.0,"y":271.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1588.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1590","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2311.0,"y":278.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:1591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2524.0,"y":278.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:1592","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2565.0,"y":275.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:1593","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2482.0,"y":280.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1593.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1598","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":278.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":278.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1599.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-2260.0,"y":288.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1600.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"492:1614","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:1614.png","type":"screen","designNode":{"UUID":"492:1614","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:1439","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2580.0,"y":1076.0,"z":30.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:1615","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2355.0,"y":1093.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1616","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2312.0,"y":1094.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1616.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1617","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-2336.0,"y":1094.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:1618","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2335.125,"y":1094.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1618.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2355.0,"y":1095.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1620.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1621","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2278.0,"y":1093.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":-2529.0,"y":1197.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"492:1623","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":1257.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"492:1624","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":1257.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1624.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1625","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":-2517.0,"y":1268.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"492:1627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-2304.0,"y":1271.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"492:1628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":-2537.0,"y":1275.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1628.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1629","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":-2501.0,"y":1416.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"492:1630","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2553.0,"y":1338.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:1631","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":-2423.0,"y":1346.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"492:1632","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2358.0,"y":1416.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1632.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":1416.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1636","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":1416.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1637","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-2398.0,"y":1419.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1637.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1643","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":1416.0,"z":8.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1644","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":1416.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1644.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1646","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.9132080078125,"width":23.0,"x":-2318.0,"y":1419.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1646.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2580.0,"y":1479.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1649","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2580.0,"y":1479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1650","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2574.0,"y":1495.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1651","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:1653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2557.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:1654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2521.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:1655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:1656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:1657","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2522.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:1658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2486.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:1659","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:1660","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:1661","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2487.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:1662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2451.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:1663","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1664","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:1665","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2452.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:1666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2416.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:1667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1668","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:1669","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2417.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:1670","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2381.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:1671","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:1672","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:1673","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2382.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:1674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2346.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:1675","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:1676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:1677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2347.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:1678","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2311.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:1679","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:1680","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:1681","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2312.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:1682","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:1683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:1684","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2277.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:1685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:1686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:1687","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2555.66015625,"y":1634.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1687.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1692","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-2266.0,"y":1633.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1693","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-2260.0,"y":1634.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-2266.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1694.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-2257.0,"y":1638.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1695.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1698","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2451.0,"y":1667.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1698.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1700","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2311.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:1701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2524.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:1702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2565.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:1703","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2482.0,"y":1676.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1703.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1708","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":1674.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1709","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1709.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1710","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-2260.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1710.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"492:1870","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:1870.png","type":"screen","designNode":{"UUID":"492:1870","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2203","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2180.0,"y":378.0,"z":6.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2022","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1955.0,"y":395.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2023","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1912.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2023.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2024","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1936.0,"y":396.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2025","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1935.125,"y":396.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2025.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2027","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1955.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2027.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2028","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1878.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1872","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":-2058.0,"y":497.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"492:1873","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":-2082.0,"y":678.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"492:1874","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":-2137.0,"y":543.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"492:1875","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":-2101.0,"y":514.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"492:1876","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2100.0,"y":619.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1876.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1877","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2043.0,"y":619.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1877.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1878","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1987.0,"y":619.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1878.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1879","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1935.0,"y":619.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1879.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2154.0,"y":712.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:1881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":-2021.0,"y":720.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"492:1957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":781.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1958","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2180.0,"y":781.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1959","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2174.0,"y":797.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1960","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":797.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1961","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":839.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:1962","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":882.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:1963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":925.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:1964","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":797.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:1965","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":839.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:1966","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":882.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:1967","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":925.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:1968","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":797.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:1969","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":839.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:1970","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":882.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:1971","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":925.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:1972","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":797.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1973","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":839.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:1974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":882.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:1975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":925.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:1976","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":797.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":839.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:1978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":882.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:1979","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":925.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:1980","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":797.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:1981","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":839.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:1982","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":882.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:1983","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":925.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:1984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":797.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:1985","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":839.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:1986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":882.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:1987","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":925.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:1988","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":797.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:1989","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":839.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:1990","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":882.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:1991","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":797.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:1992","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":839.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:1993","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":882.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:1994","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":797.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:1995","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":839.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:1996","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":936.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1996.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2001","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1866.0,"y":935.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2002","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1860.0,"y":936.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2003","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":935.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2003.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2004","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-1857.0,"y":940.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2004.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2007","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2051.0,"y":969.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2007.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2009","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":976.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:2010","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":976.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:2011","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":973.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:2012","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":978.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2012.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2017","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":976.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2018","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":976.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2018.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2019","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1860.0,"y":986.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2019.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":5.0,"x":-2085.0,"y":627.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1884","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":9.0,"x":-2030.0,"y":627.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1885","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":9.0,"x":-1974.0,"y":627.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1886","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":9.0,"x":-1922.0,"y":627.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"}]},"isVisible":true},{"UUID":"492:2203","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:2203.png","type":"screen","designNode":{"UUID":"492:2203","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2180.0,"y":1076.0,"z":31.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1955.0,"y":1093.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2356","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1912.0,"y":1094.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2356.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1936.0,"y":1094.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2358","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1935.125,"y":1094.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2358.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1955.0,"y":1095.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2360.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1878.0,"y":1093.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":-2058.0,"y":1195.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"492:2206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":-2082.0,"y":1376.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"492:2207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":-2137.0,"y":1241.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"492:2208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":-2101.0,"y":1212.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"492:2209","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2100.0,"y":1317.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2209.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2210","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2043.0,"y":1317.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2211","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1987.0,"y":1317.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2211.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1935.0,"y":1317.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2212.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2154.0,"y":1410.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"532:437","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:2214","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":-2021.0,"y":1418.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"492:2215","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":1479.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"492:2215","overrideProperties":[{"UUID":"492:2279","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":-1860.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2279.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2278","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":-1860.0,"y":1684.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2278.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2276","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2276.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2274","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":-2078.0,"y":1685.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2274.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2273","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 4","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2073.0,"y":1681.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2273.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2272","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2078.0,"y":1681.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2272.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2271","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":1676.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2271.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2269","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr?123","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"type":"stringValue"},{"UUID":"492:2268","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr,","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"type":"stringValue"},{"UUID":"492:2267","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr.","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"type":"stringValue"},{"UUID":"492:2261","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrPolygon 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2261.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2255","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShift","child":null,"constraints":null,"value":{"UUID":"492:2255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":1634.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/492_2255.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2253","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrp","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"type":"stringValue"},{"UUID":"492:2252","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr0","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"type":"stringValue"},{"UUID":"492:2251","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrl","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"type":"stringValue"},{"UUID":"492:2250","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovro","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"type":"stringValue"},{"UUID":"492:2249","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr9","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"type":"stringValue"},{"UUID":"492:2248","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrk","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"type":"stringValue"},{"UUID":"492:2247","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovri","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"type":"stringValue"},{"UUID":"492:2246","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr8","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"type":"stringValue"},{"UUID":"492:2245","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrm","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"type":"stringValue"},{"UUID":"492:2244","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrj","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"type":"stringValue"},{"UUID":"492:2243","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovru","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"type":"stringValue"},{"UUID":"492:2242","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr7","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"type":"stringValue"},{"UUID":"492:2241","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrn","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"type":"stringValue"},{"UUID":"492:2240","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrh","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"type":"stringValue"},{"UUID":"492:2239","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovry","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"type":"stringValue"},{"UUID":"492:2238","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr6","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"type":"stringValue"},{"UUID":"492:2237","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrb","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"type":"stringValue"},{"UUID":"492:2236","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrg","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"type":"stringValue"},{"UUID":"492:2235","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrt","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"type":"stringValue"},{"UUID":"492:2234","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr5","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"type":"stringValue"},{"UUID":"492:2233","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrv","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"type":"stringValue"},{"UUID":"492:2232","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrf","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"type":"stringValue"},{"UUID":"492:2231","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrr","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"type":"stringValue"},{"UUID":"492:2230","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr4","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"type":"stringValue"},{"UUID":"492:2229","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrc","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"type":"stringValue"},{"UUID":"492:2228","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrd","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"type":"stringValue"},{"UUID":"492:2227","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovre","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"type":"stringValue"},{"UUID":"492:2226","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr3","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"type":"stringValue"},{"UUID":"492:2225","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrx","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"type":"stringValue"},{"UUID":"492:2224","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrs","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"type":"stringValue"},{"UUID":"492:2223","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrw","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"type":"stringValue"},{"UUID":"492:2222","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr2","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"type":"stringValue"},{"UUID":"492:2221","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrz","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"type":"stringValue"},{"UUID":"492:2220","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovra","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"type":"stringValue"},{"UUID":"492:2219","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrq","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"type":"stringValue"},{"UUID":"492:2218","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr1","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"type":"stringValue"}],"children":[{"UUID":"492:2216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2180.0,"y":1479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2174.0,"y":1495.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:2219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:2220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:2221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:2222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:2223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:2224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:2225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:2226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:2227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:2228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:2229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:2230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:2231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:2232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:2233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:2234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:2235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:2236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:2237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:2238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:2239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:2240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:2241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:2242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:2243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:2244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:2245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:2246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:2247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:2248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:2249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:2250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:2251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:2252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:2253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:2254","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":1634.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1866.0,"y":1633.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1860.0,"y":1634.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2261.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5,"width":6.0,"x":-1857.0,"y":1638.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2262.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2265","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2051.0,"y":1667.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2265.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:2268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:2269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:2270","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":1676.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1860.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2277.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"492:2280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":1479.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"492:2215","parameters":null,"overrideValues":[{"UUID":"492:2279","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":-1860.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2279.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2279.png","type":"image"},{"UUID":"492:2278","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":-1860.0,"y":1684.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2278.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2278.png","type":"image"},{"UUID":"492:2276","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2276.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2276.png","type":"image"},{"UUID":"492:2274","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":-2078.0,"y":1685.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2274.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2274.png","type":"image"},{"UUID":"492:2273","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2073.0,"y":1681.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2273.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2273.png","type":"image"},{"UUID":"492:2272","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2078.0,"y":1681.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2272.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2272.png","type":"image"},{"UUID":"492:2271","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":1676.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2271.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2271.png","type":"image"},{"UUID":"492:2269","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"?123","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"valueName":"?123","type":"stringValue"},{"UUID":"492:2268","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":",","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"valueName":",","type":"stringValue"},{"UUID":"492:2267","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":".","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"valueName":".","type":"stringValue"},{"UUID":"492:2261","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Polygon 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2261.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2261.png","type":"image"},{"UUID":"492:2255","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"value":{"UUID":"I492:2280;492:2255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":1634.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/I492_2280;492_2255.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2255.png","type":"image"},{"UUID":"492:2253","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"p","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"valueName":"p","type":"stringValue"},{"UUID":"492:2252","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"0","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"valueName":"0","type":"stringValue"},{"UUID":"492:2251","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"l","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"valueName":"l","type":"stringValue"},{"UUID":"492:2250","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"o","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"valueName":"o","type":"stringValue"},{"UUID":"492:2249","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"9","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"valueName":"9","type":"stringValue"},{"UUID":"492:2248","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"k","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"valueName":"k","type":"stringValue"},{"UUID":"492:2247","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"i","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"valueName":"i","type":"stringValue"},{"UUID":"492:2246","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"8","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"valueName":"8","type":"stringValue"},{"UUID":"492:2245","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"m","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"valueName":"m","type":"stringValue"},{"UUID":"492:2244","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"j","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"valueName":"j","type":"stringValue"},{"UUID":"492:2243","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"u","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"valueName":"u","type":"stringValue"},{"UUID":"492:2242","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"7","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"valueName":"7","type":"stringValue"},{"UUID":"492:2241","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"n","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"valueName":"n","type":"stringValue"},{"UUID":"492:2240","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"h","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"valueName":"h","type":"stringValue"},{"UUID":"492:2239","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"y","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"valueName":"y","type":"stringValue"},{"UUID":"492:2238","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"6","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"valueName":"6","type":"stringValue"},{"UUID":"492:2237","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"b","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"valueName":"b","type":"stringValue"},{"UUID":"492:2236","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"g","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"valueName":"g","type":"stringValue"},{"UUID":"492:2235","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"t","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"valueName":"t","type":"stringValue"},{"UUID":"492:2234","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"valueName":"5","type":"stringValue"},{"UUID":"492:2233","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"v","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"valueName":"v","type":"stringValue"},{"UUID":"492:2232","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"f","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"valueName":"f","type":"stringValue"},{"UUID":"492:2231","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"r","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"valueName":"r","type":"stringValue"},{"UUID":"492:2230","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"valueName":"4","type":"stringValue"},{"UUID":"492:2229","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"c","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"valueName":"c","type":"stringValue"},{"UUID":"492:2228","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"d","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"valueName":"d","type":"stringValue"},{"UUID":"492:2227","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"e","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"valueName":"e","type":"stringValue"},{"UUID":"492:2226","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"valueName":"3","type":"stringValue"},{"UUID":"492:2225","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"x","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"valueName":"x","type":"stringValue"},{"UUID":"492:2224","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"s","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"valueName":"s","type":"stringValue"},{"UUID":"492:2223","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"w","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"valueName":"w","type":"stringValue"},{"UUID":"492:2222","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"valueName":"2","type":"stringValue"},{"UUID":"492:2221","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"z","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"valueName":"z","type":"stringValue"},{"UUID":"492:2220","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"a","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"valueName":"a","type":"stringValue"},{"UUID":"492:2219","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"q","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"valueName":"q","type":"stringValue"},{"UUID":"492:2218","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"valueName":"1","type":"stringValue"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:2281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 435","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-2087.0,"y":1330.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-1974.0,"y":1330.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 436","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-2030.0,"y":1330.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-1922.0,"y":1330.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2284.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"492:2686","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:2686.png","type":"screen","designNode":{"UUID":"492:2686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"523:414","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":378.0,"z":32.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2858","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":395.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2859","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2859.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1536.0,"y":396.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2861","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":396.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2861.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2863","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2863.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2864","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2688","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":153.0,"x":-1677.0,"y":432.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Setup Profile"},{"UUID":"492:2702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1740.0,"y":733.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:2703","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1630.0,"y":740.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"492:2720","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and comditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":249.0,"x":-1738.0,"y":680.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and comditions"},{"UUID":"492:2793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-1780.0,"y":789.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2794","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-1781.0,"y":801.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2795","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-1774.0,"y":805.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2796","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":805.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:2797","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":847.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:2798","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1757.0,"y":890.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:2799","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1721.0,"y":933.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:2800","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":805.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:2801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":847.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:2802","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1722.0,"y":890.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:2803","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1686.0,"y":933.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:2804","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":805.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:2805","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":847.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:2806","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1687.0,"y":890.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:2807","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1651.0,"y":933.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:2808","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":805.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:2809","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":847.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:2810","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1652.0,"y":890.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:2811","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1616.0,"y":933.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:2812","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":805.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:2813","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":847.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:2814","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1617.0,"y":890.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:2815","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1581.0,"y":933.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:2816","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":805.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:2817","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":847.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:2818","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1582.0,"y":890.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:2819","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1546.0,"y":933.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:2820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":805.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:2821","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":847.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:2822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1547.0,"y":890.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:2823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1511.0,"y":933.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:2824","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":805.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:2825","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":847.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:2826","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1512.0,"y":890.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:2827","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":805.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:2828","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":847.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:2829","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1477.0,"y":890.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:2830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":805.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:2831","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":847.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:2832","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-1755.6602783203125,"y":944.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2832.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2837","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1466.0,"y":943.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2838","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1460.0,"y":944.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2839","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1466.0,"y":943.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2839.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2840","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-1457.0,"y":948.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2840.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2843","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-1651.0,"y":977.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2843.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2845","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1511.0,"y":984.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:2846","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1724.0,"y":984.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:2847","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-1765.0,"y":981.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:2848","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-1682.0,"y":986.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2848.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":984.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":984.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2854.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2855","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1460.0,"y":994.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2855.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":-1691.0,"y":777.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"492:2704","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49041748046875,"width":16.4903564453125,"x":-1550.832275390625,"y":781.05810546875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2704.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2707","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1578.31591796875,"y":781.05810546875,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2708","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1578.31591796875,"y":781.05810546875,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2709","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.36773681640625,"width":16.4903564453125,"x":-1578.31591796875,"y":783.119384765625,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2709.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:2715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1523.348388671875,"y":781.05810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2716","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1523.348388671875,"y":781.05810546875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2716.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2718","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.9952392578125,"width":15.80322265625,"x":-1522.6612548828125,"y":783.119384765625,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2718.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:543","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":468.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:544","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":468.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_544.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:545","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":-1725.0,"y":475.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"532:546","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":479.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:547","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":515.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:548","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":515.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_548.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:549","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":45.0,"x":-1725.0,"y":522.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Email"},{"UUID":"532:550","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":526.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:551","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":563.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:552","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":563.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_552.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":119.0,"x":-1725.0,"y":570.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone number"},{"UUID":"532:554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":574.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":611.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":611.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_556.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":-1725.0,"y":618.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Address"},{"UUID":"532:558","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":622.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":659.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":659.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_560.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":-1725.0,"y":666.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"State"},{"UUID":"532:562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":670.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":708.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:564","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:565","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1733.0,"y":712.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_565.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:567","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1715.0,"y":707.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true},{"UUID":"492:2881","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:2881.png","type":"screen","designNode":{"UUID":"492:2881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":1778.0,"z":34.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":1795.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2929","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":1796.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2929.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2930","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1536.0,"y":1796.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2931","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":1796.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2931.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2933","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":1797.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2933.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2934","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":1795.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1504.0,"y":1880.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"492:2884","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":38.348876953125,"width":191.0,"x":-1695.0,"y":1846.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Setup Profile"},{"UUID":"532:675","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1909.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1909.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_676.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":-1725.0,"y":1916.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"532:678","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":1920.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:679","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1964.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:680","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1964.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_680.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:681","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":-1725.0,"y":1971.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"johndoe@gmail.com"},{"UUID":"532:682","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1975.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2020.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:684","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2020.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_684.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":2031.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"532:719","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"09037584957","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":110.0,"x":-1725.0,"y":2027.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"09037584957"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:687","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2076.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:688","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2076.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_688.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:689","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":155.0,"x":-1725.0,"y":2083.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"532:690","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":2087.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:691","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2132.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:692","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2132.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_692.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:693","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":-1725.0,"y":2139.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"FCT"},{"UUID":"532:694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":2143.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":-1714.0,"y":2304.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:696","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":278.0,"x":-1739.0,"y":2237.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2942","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:697","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1631.0,"y":2245.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:698","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1551.0,"y":2305.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_698.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":2305.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":2305.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:703","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-1591.0,"y":2308.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_703.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:709","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":2305.0,"z":13.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:710","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":2305.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_710.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:712","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.913330078125,"width":23.0,"x":-1510.0,"y":2308.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_712.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":2181.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":2181.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:716","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1732.0,"y":2185.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_716.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:718","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1714.0,"y":2180.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true},{"UUID":"492:2942","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Location pop up","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:2942.png","type":"screen","designNode":{"UUID":"492:2942","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Location pop up","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:417","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1380.0,"y":378.0,"z":35.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2943","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1637.0,"y":225.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2943.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2944","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":499.9476318359375,"width":324.79815673828125,"x":-1099.144287109375,"y":689.407470703125,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2945","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-973.654052734375,"y":747.6292114257812,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2945.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50213623046875,"width":39.36944580078125,"x":-907.218017578125,"y":991.9074096679688,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2948.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2951","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.3695068359375,"x":-1099.144287109375,"y":689.407470703125,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2951.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2954","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-813.715576171875,"y":869.135498046875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2954.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-928.133056640625,"y":1148.85302734375,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2957.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:2960","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":429.0,"x":-1409.0,"y":378.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2961","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 144","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1691.0,"y":528.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2962","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1691.0,"y":528.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":281.634033203125,"x":-1679.856201171875,"y":549.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"492:2964","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":258.3333740234375,"x":-1668.0,"y":765.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:2965","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":142.8431396484375,"x":-1610.0,"y":774.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}],"type":"group"},{"UUID":"492:2973","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1155.0,"y":399.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1112.0,"y":400.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2974.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1136.0,"y":400.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2976","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1135.125,"y":400.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2976.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1155.0,"y":401.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2978.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2979","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1078.0,"y":399.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"492:2982","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:2982.png","type":"screen","designNode":{"UUID":"492:2982","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-980.0,"y":378.0,"z":11.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2983","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1268.0,"y":-25.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2983.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":-600.1442260742188,"y":530.02783203125,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2985","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-474.654052734375,"y":586.6214599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2985.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2988","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-408.218017578125,"y":824.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2988.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2991","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-600.1442260742188,"y":530.02783203125,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2991.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2994","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-314.715576171875,"y":704.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2994.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2997","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-429.133056640625,"y":976.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2997.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3000","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":-560.7747192382812,"y":792.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3001","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":-560.7747192382812,"y":792.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3001.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3002","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":-543.5506591796875,"y":809.3046875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3002.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"492:3004","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-755.0,"y":395.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-678.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-712.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3004;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3004;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-735.125,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3004;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3004;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-755.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3004;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3004;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3005","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":686.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":686.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3006.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":-671.0,"y":699.9998168945312,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3007.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:3009","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":689.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3009.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3010","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":428.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3010.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3011","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-897.0,"y":689.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3011.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3012","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-945.0,"y":699.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3012.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3013","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-886.0,"y":700.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3013.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3016","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-919.0,"y":808.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3017","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-942.0,"y":442.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3017.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3019","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":-777.0,"y":808.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3020","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-904.0,"y":849.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3021","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":-771.0,"y":849.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3022","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.2996826171875,"x":-896.0,"y":824.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3022.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3028","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.2996826171875,"x":-752.0,"y":824.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3028.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3034","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-955.0,"y":508.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3035","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.06201171875,"width":19.05999755859375,"x":-945.0,"y":523.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3035.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3037","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-849.0,"y":934.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3038","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-955.0,"y":476.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"492:3045","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"!2, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":159.0,"x":-912.0,"y":521.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"!2, Jabi area, Abuja"}]},"isVisible":true},{"UUID":"492:3122","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:3122.png","type":"screen","designNode":{"UUID":"492:3122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-180.0,"y":-320.0,"z":9.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-468.0,"y":-723.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3123.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":199.85577392578125,"y":-167.97216796875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:3125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":325.345947265625,"y":-111.3785400390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3125.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":391.781982421875,"y":126.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3128.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36946105957031,"x":199.85577392578125,"y":-167.97216796875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3131.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36945724487305,"width":39.36944580078125,"x":485.284423828125,"y":6.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3134.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3137","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":370.866943359375,"y":278.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3137.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3140","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":239.22528076171875,"y":94.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3141","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":239.22528076171875,"y":94.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3141.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3142","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":256.4493408203125,"y":111.30470275878906,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3142.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"492:3144","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":45.0,"y":-303.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":122.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":88.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3144;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3144;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":64.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3144;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3144;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":45.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3144;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3144;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3145","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":-12.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3146","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3146.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3147","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":129.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3147.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:3149","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3149.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3150","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":-270.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3150.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3151","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-97.0,"y":-9.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3151.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-145.0,"y":1.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3152.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3153","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-86.0,"y":2.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3153.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3156","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-119.0,"y":110.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3157","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-142.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3157.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":23.0,"y":110.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-104.0,"y":151.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":29.0,"y":151.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299659729003906,"x":-96.0,"y":126.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3162.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299659729003906,"x":48.0,"y":126.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3168.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3174","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-155.0,"y":-190.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:612","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3175","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.05999755859375,"x":-145.0,"y":-175.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3175.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":-119.0,"y":-178.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"492:3177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-49.0,"y":236.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-155.0,"y":-222.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"479:542","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":-204.0,"y":-320.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:543","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":-154.0,"y":-248.0,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_543.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:544","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":-73.0,"y":-234.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:1013","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"479:545","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":-154.0,"y":-131.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:559","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"479:546","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":-154.0,"y":-91.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:854","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"479:547","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notifications","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":102.0,"x":-154.0,"y":-51.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Notifications"},{"UUID":"479:548","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":-154.0,"y":29.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:870","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"479:549","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":104.0,"x":-154.0,"y":-11.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi delivery"},{"UUID":"479:550","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":-154.0,"y":69.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:890","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"479:551","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":-154.0,"y":109.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"479:552","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":-71.0,"y":-209.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"479:553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":-166.0,"y":-294.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"479:554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":-151.0,"y":200.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":-131.0,"y":212.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"479:556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":-130.0,"y":233.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"479:557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.087284088134766,"x":19.0,"y":222.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_557.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:558","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":-148.0,"y":267.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"492:3248","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:3248.png","type":"screen","designNode":{"UUID":"492:3248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:3122","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-180.0,"y":378.0,"z":10.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-468.0,"y":-25.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":199.85577392578125,"y":530.02783203125,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:3251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":325.345947265625,"y":586.6214599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3251.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":391.781982421875,"y":824.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36946105957031,"x":199.85577392578125,"y":530.02783203125,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":485.284423828125,"y":704.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":370.866943359375,"y":976.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3263.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":239.22528076171875,"y":792.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":239.22528076171875,"y":792.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3267.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":256.4493408203125,"y":809.3046875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3268.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"492:3270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":45.0,"y":395.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":122.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":88.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3270;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3270;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":64.875,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3270;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3270;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":45.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3270;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3270;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":686.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":686.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":129.0,"y":699.9998168945312,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3273.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:3275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":689.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":428.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-97.0,"y":689.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-145.0,"y":699.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-86.0,"y":700.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-119.0,"y":808.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-142.0,"y":442.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":23.0,"y":808.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-104.0,"y":849.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":29.0,"y":849.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.299659729003906,"x":-96.0,"y":824.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.299659729003906,"x":48.0,"y":824.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3294.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-155.0,"y":508.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.06201171875,"width":19.05999755859375,"x":-145.0,"y":523.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3301.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":-119.0,"y":520.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"492:3303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-49.0,"y":934.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-155.0,"y":476.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"492:3305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":-440.0,"y":378.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"492:3306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":-391.0,"y":450.0,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3306.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":-310.0,"y":464.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"492:3308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":-391.0,"y":567.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"492:3309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":-391.0,"y":607.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"492:3310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notifications","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":102.0,"x":-391.0,"y":647.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Notifications"},{"UUID":"492:3311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":-391.0,"y":727.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"492:3312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":104.0,"x":-391.0,"y":687.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi delivery"},{"UUID":"492:3313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":-391.0,"y":767.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"492:3314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":-391.0,"y":807.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"492:3315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":-308.0,"y":489.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"492:3316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":-403.0,"y":404.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"492:3317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":-388.0,"y":898.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":-368.0,"y":910.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"492:3319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":-367.0,"y":931.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"492:3320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":-218.0,"y":920.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3320.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":-385.0,"y":965.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"492:3331","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:3331.png","type":"screen","designNode":{"UUID":"492:3331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":620.0,"y":1082.0,"z":23.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":239.0,"y":858.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3332.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":703.0,"y":1521.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":845.0,"y":1099.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":922.0,"y":1099.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":888.0,"y":1100.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3365;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3365;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":864.875,"y":1100.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3365;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3365;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":845.0,"y":1101.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3365;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3365;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":647.0,"y":1132.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3366.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"496:403","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 159","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":631.0,"y":1383.0,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:3367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":631.0,"y":1383.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"438:117","parameters":null,"overrideValues":[{"UUID":"443:118","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":644.0,"y":1547.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},"valueName":"Car model: Honda Civic","type":"stringValue"},{"UUID":"443:119","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car colour: Grey","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":645.0,"y":1567.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"},"valueName":"Car colour: Grey","type":"stringValue"},{"UUID":"441:111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;441:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47802734375,"width":9.92523193359375,"x":719.0374145507812,"y":1500.8004150390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3367;441_111.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3367;441_111.png","type":"image"},{"UUID":"441:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;441:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.1494140625,"width":24.97125244140625,"x":906.9883422851562,"y":1506.716552734375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3367;441_116.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3367;441_116.png","type":"image"},{"UUID":"443:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 438","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":897.0,"y":1500.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3367;443_117.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3367;443_117.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":269.0,"x":644.0,"y":1624.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":668.0,"y":1638.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"492:3370","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":799.0,"y":1624.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:932","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":840.0,"y":1636.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"492:3372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5 MINs","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":68.0,"x":765.0,"y":1431.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5 MINs "},{"UUID":"492:3373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"GXM 507 AJ","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":84.0,"x":712.0,"y":1513.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"GXM 507 AJ "},{"UUID":"492:3374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your rider will be at your location in","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":286.0,"x":655.0,"y":1407.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your rider will be at your location in "},{"UUID":"492:3375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tunde Kareem","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":91.0,"x":712.0,"y":1483.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Tunde Kareem"},{"UUID":"492:3376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5.0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":735.0,"y":1500.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5.0"},{"UUID":"492:3397","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":64.0,"x":644.0,"y":1476.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3397.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"492:3415","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/492:3415.png","type":"screen","designNode":{"UUID":"492:3415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:3331","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":620.0,"y":381.0,"z":24.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":239.0,"y":157.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3416.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":703.0,"y":820.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3430","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":820.0,"y":820.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":751.0,"y":937.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":647.0,"y":431.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3450.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"500:416","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/500:416.png","type":"screen","designNode":{"UUID":"500:416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"501:519","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1818.0,"y":381.0,"z":17.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"500:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2043.0,"y":398.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2120.0,"y":398.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2086.0,"y":399.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I500_417;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I500_417;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2062.875,"y":399.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I500_417;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I500_417;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2043.0,"y":400.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I500_417;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I500_417;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"500:418","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":1844.0,"y":502.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"500:419","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":1844.0,"y":542.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"500:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":1954.0,"y":783.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"500:421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":1843.0,"y":431.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_421.png","prototypeNodeUUID":"479:559","type":"image"},{"UUID":"500:422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":1923.0,"y":417.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"500:423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":1844.0,"y":529.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:424","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":1844.0,"y":594.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:425","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":1844.0,"y":659.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":2043.0,"y":659.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":1843.0,"y":706.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"500:428","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":1967.0,"y":718.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"500:429","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2130.0,"y":563.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_429.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:432","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":1844.0,"y":481.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"500:433","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":1842.0,"y":539.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"500:434","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":1842.0,"y":604.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"500:435","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":2043.0,"y":605.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"500:450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":1818.0,"y":785.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":1818.0,"y":785.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"500:452","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":1824.0,"y":801.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1824.0,"y":801.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"500:454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1824.0,"y":843.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"500:455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1841.0,"y":886.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"500:456","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1877.0,"y":929.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"500:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1859.0,"y":801.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"500:458","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1859.0,"y":843.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"500:459","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1876.0,"y":886.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"500:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1912.0,"y":929.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"500:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1894.0,"y":801.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"500:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1894.0,"y":843.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"500:463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1911.0,"y":886.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"500:464","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1947.0,"y":929.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"500:465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1929.0,"y":801.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"500:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1929.0,"y":843.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"500:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1946.0,"y":886.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"500:468","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1982.0,"y":929.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"500:469","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1964.0,"y":801.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"500:470","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1964.0,"y":843.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"500:471","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1981.0,"y":886.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"500:472","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2017.0,"y":929.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"500:473","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1999.0,"y":801.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"500:474","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1999.0,"y":843.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"500:475","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2016.0,"y":886.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"500:476","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2052.0,"y":929.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"500:477","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2034.0,"y":801.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"500:478","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2034.0,"y":843.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"500:479","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2051.0,"y":886.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"500:480","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2087.0,"y":929.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"500:481","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2069.0,"y":801.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"500:482","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2069.0,"y":843.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"500:483","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2086.0,"y":886.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"500:484","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2104.0,"y":801.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"500:485","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2104.0,"y":843.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"500:486","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2121.0,"y":886.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"500:487","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2139.0,"y":801.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"500:488","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2139.0,"y":843.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"500:489","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":1842.3397216796875,"y":940.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_489.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":2132.0,"y":939.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:495","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":2138.0,"y":940.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"500:496","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":2132.0,"y":939.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_496.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:497","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":2141.0,"y":944.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_497.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"500:500","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":1947.0,"y":973.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_500.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:502","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2087.0,"y":980.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"500:503","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":1874.0,"y":980.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"500:504","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":1833.0,"y":977.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"500:505","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":1916.0,"y":982.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_505.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:510","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2131.0,"y":980.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:511","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2131.0,"y":980.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_511.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:512","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":2138.0,"y":990.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_512.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"500:515","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":1842.0,"y":505.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"500:516","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3458 9853 0976 2354","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":172.0,"x":1843.0,"y":569.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3458 9853 0976 2354"},{"UUID":"501:517","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"13/05","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":44.0,"x":1843.0,"y":636.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"13/05"},{"UUID":"501:518","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"679","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":2043.0,"y":636.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"679"}]},"isVisible":true},{"UUID":"501:519","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/501:519.png","type":"screen","designNode":{"UUID":"501:519","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1818.0,"y":1082.0,"z":16.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"501:520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2043.0,"y":1099.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2120.0,"y":1099.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2086.0,"y":1100.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I501_520;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I501_520;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2062.875,"y":1100.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I501_520;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I501_520;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2043.0,"y":1101.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I501_520;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I501_520;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"501:521","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":1844.0,"y":1397.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"501:522","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":1844.0,"y":1437.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"501:523","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":1954.0,"y":1678.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"501:524","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":1843.0,"y":1132.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/501_524.png","prototypeNodeUUID":"479:559","type":"image"},{"UUID":"501:525","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":1923.0,"y":1118.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"501:526","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":1844.0,"y":1424.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:527","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":1844.0,"y":1489.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:528","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":1844.0,"y":1554.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:529","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":2043.0,"y":1554.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:530","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":1843.0,"y":1601.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:559","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"501:531","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":1967.0,"y":1613.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"501:532","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2130.0,"y":1458.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/501_532.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"501:535","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":1844.0,"y":1376.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"501:536","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":1842.0,"y":1434.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"501:537","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":1842.0,"y":1499.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"501:538","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":2043.0,"y":1500.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"501:539","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 158","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.25,"width":245.0,"x":1875.0,"y":1179.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/501_539.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"501:553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":1842.0,"y":1400.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"501:554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3458 9853 0976 2354","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":172.0,"x":1843.0,"y":1464.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3458 9853 0976 2354"},{"UUID":"501:555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"13/05","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":44.0,"x":1843.0,"y":1531.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"13/05"},{"UUID":"501:556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"679","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":2043.0,"y":1531.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"679"}]},"isVisible":true},{"UUID":"523:414","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/523:414.png","type":"screen","designNode":{"UUID":"523:414","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2881","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":1076.0,"z":33.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"523:415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":1093.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"523:416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":1094.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/523_416.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"523:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1536.0,"y":1094.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"523:418","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":1094.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/523_418.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"523:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":1095.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/523_420.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"523:421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":1093.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"523:422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":153.0,"x":-1677.0,"y":1130.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Setup Profile"},{"UUID":"523:437","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1636.0,"y":1420.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:568","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1740.0,"y":1433.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:569","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1630.0,"y":1440.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:571","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":1505.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"532:572","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":1547.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"532:573","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1757.0,"y":1590.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"532:574","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1721.0,"y":1633.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"532:575","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":1505.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"532:576","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":1547.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"532:577","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1722.0,"y":1590.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"532:578","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1686.0,"y":1633.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"532:579","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":1505.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"532:580","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":1547.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"532:581","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1687.0,"y":1590.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"532:582","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1651.0,"y":1633.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"532:583","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":1505.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"532:584","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":1547.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"532:585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1652.0,"y":1590.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"532:586","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1616.0,"y":1633.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"532:587","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":1505.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"532:588","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":1547.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"532:589","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1617.0,"y":1590.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"532:590","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1581.0,"y":1633.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"532:591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":1505.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"532:592","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":1547.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"532:593","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1582.0,"y":1590.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"532:594","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1546.0,"y":1633.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"532:595","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":1505.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"532:596","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":1547.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"532:597","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1547.0,"y":1590.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"532:598","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1511.0,"y":1633.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"532:599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":1505.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"532:600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":1547.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"532:601","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1512.0,"y":1590.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"532:602","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":1505.0,"z":36.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"532:603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":1547.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"532:604","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1477.0,"y":1590.0,"z":38.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"532:605","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":1505.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"532:606","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":1547.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"532:607","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-1755.6602783203125,"y":1644.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_607.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:612","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1466.0,"y":1643.0,"z":42.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"532:613","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1460.0,"y":1644.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:614","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1466.0,"y":1643.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_614.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:615","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-1457.0,"y":1648.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_615.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:618","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-1651.0,"y":1677.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_618.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1511.0,"y":1684.0,"z":44.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"532:621","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1724.0,"y":1684.0,"z":45.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"532:622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-1765.0,"y":1681.0,"z":46.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"532:623","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-1682.0,"y":1686.0,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_623.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":1684.0,"z":48.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"532:629","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":1684.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_629.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:630","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1460.0,"y":1694.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_630.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":-1691.0,"y":1477.0,"z":49.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:634","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1550.832275390625,"y":1481.05810546875,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_634.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:637","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1578.31591796875,"y":1481.05810546875,"z":51.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:638","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1578.31591796875,"y":1481.05810546875,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:639","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.3677978515625,"width":16.4903564453125,"x":-1578.31591796875,"y":1483.119384765625,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_639.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1523.348388671875,"y":1481.05810546875,"z":52.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1523.348388671875,"y":1481.05810546875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_646.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:648","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.9952392578125,"width":15.80322265625,"x":-1522.6612548828125,"y":1483.119384765625,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_648.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:650","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1168.0,"z":53.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:651","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1168.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_651.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":-1725.0,"y":1175.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"532:653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":1179.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1215.0,"z":54.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1215.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_655.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":-1725.0,"y":1222.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"johndoe@gmail.com"},{"UUID":"532:657","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1226.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1263.0,"z":55.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:659","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1263.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_659.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:660","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"09037584957","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":110.0,"x":-1725.0,"y":1270.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"09037584957"},{"UUID":"532:661","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1274.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1311.0,"z":56.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:663","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1311.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_663.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:664","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":155.0,"x":-1725.0,"y":1318.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"532:665","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1322.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1359.0,"z":57.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1359.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_667.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:668","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":-1725.0,"y":1366.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"FCT"},{"UUID":"532:669","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1370.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:670","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":1408.0,"z":58.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:671","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":1408.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:672","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1733.0,"y":1412.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_672.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1715.0,"y":1407.0,"z":59.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true},{"UUID":"532:437","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/532:437.png","type":"screen","designNode":{"UUID":"532:437","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":-320.0,"z":36.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"532:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_438;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_438;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_438;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_438;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_438;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_438;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"532:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Set up profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":201.0,"x":-1701.0,"y":-261.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Set up profile"},{"UUID":"532:440","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":-192.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:441","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":-192.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_441.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:442","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":-1725.0,"y":-185.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"532:443","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":-181.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-137.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-137.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_445.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:446","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":45.0,"x":-1725.0,"y":-130.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Email"},{"UUID":"532:447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":-126.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:448","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-81.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:449","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-81.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_449.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":119.0,"x":-1725.0,"y":-74.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone number"},{"UUID":"532:451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":-70.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:452","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-25.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-25.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_453.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":-1725.0,"y":-18.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Address"},{"UUID":"532:455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":-14.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:456","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":31.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":31.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_457.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:458","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":-1725.0,"y":38.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"State"},{"UUID":"532:459","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":42.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":-1714.0,"y":203.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":278.0,"x":-1739.0,"y":136.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1631.0,"y":144.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1551.0,"y":204.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_463.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":204.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":204.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:468","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-1591.0,"y":207.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_468.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:474","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":204.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:475","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":204.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_475.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:477","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":-1510.0,"y":207.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_477.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:479","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":80.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:480","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":80.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:481","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1732.0,"y":84.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_481.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:483","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1714.0,"y":79.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true}],"type":"page"},{"UUID":"48:113","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"STYLE GUIDE","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"126:268","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Form Controls","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/126:268.png","type":"screen","designNode":{"UUID":"126:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Form Controls","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1042.0,"width":712.0,"x":-64.0,"y":31.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Header","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":96.0,"width":552.0,"x":16.0,"y":111.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9803921580314636,"g":0.9803921580314636,"b":0.9803921580314636},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":552.0,"x":16.0,"y":139.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":34.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Form controls"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":280.0,"x":328.0,"y":708.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:271","overrideProperties":[{"UUID":"126:2912","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2912","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2911","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Can’t attach"},"type":"stringValue"},{"UUID":"126:2920","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape","child":null,"constraints":null,"value":{"UUID":"126:2920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1154.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2920.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2883","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2882","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2882","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Another ringtone"},"type":"stringValue"},{"UUID":"126:2891","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape2","child":null,"constraints":null,"value":{"UUID":"126:2891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1058.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2891.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2854","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2853","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"And some more..."},"type":"stringValue"},{"UUID":"126:2862","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape3","child":null,"constraints":null,"value":{"UUID":"126:2862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1106.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2862.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2823","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2822","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ganymede"},"type":"stringValue"},{"UUID":"126:2832","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape4","child":null,"constraints":null,"value":{"UUID":"126:2832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":818.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2832.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2793","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2792","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2792","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},"type":"stringValue"},{"UUID":"126:2801","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape5","child":null,"constraints":null,"value":{"UUID":"126:2801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":722.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2801.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2764","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2764","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2763","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2763","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Dione"},"type":"stringValue"},{"UUID":"126:2772","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape6","child":null,"constraints":null,"value":{"UUID":"126:2772","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1010.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2772.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2735","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2735","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2734","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2734","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Phobos"},"type":"stringValue"},{"UUID":"126:2743","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape7","child":null,"constraints":null,"value":{"UUID":"126:2743","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":962.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2743.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2706","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2706","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2705","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2705","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Oberon"},"type":"stringValue"},{"UUID":"126:2714","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape8","child":null,"constraints":null,"value":{"UUID":"126:2714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":914.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2714.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2677","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2676","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Luna"},"type":"stringValue"},{"UUID":"126:2685","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape9","child":null,"constraints":null,"value":{"UUID":"126:2685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":866.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2685.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2648","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2647","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Calisto"},"type":"stringValue"},{"UUID":"126:2656","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape10","child":null,"constraints":null,"value":{"UUID":"126:2656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":770.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2656.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:2521","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"𝍖 Patterns/Radio/Simple","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":248.0,"x":336.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":756.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2644","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":756.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":756.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":760.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2660","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":760.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2660.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":770.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2656.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Calisto"},{"UUID":"126:2648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":852.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2673","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":852.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":852.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":856.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2689","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":856.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2689.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":866.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2685.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Luna"},{"UUID":"126:2677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2691","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":900.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":900.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2703","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":900.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2712","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":904.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2718","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":904.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2718.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":914.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2714.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2705","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Oberon"},{"UUID":"126:2706","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2720","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":948.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2731","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":948.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2732","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":948.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2741","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":952.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2747","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":952.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2747.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2743","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":962.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2743.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2734","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Phobos"},{"UUID":"126:2735","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2749","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":996.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2760","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":996.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2761","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":996.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2770","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1000.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2776","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1000.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2776.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2772","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1010.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2772.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2763","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Dione"},{"UUID":"126:2764","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2778","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Single Off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":708.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2789","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2790","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2799","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":712.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2805","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":712.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2805.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":722.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2801.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2792","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},{"UUID":"126:2793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2807","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Single On","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":804.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2819","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":804.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":804.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio on","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":808.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2837","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":808.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2837.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":818.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2832.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ganymede"},{"UUID":"126:2823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2839","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1092.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2850","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1092.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2851","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1092.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1096.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2866","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1096.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2866.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1106.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2862.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"And some more..."},{"UUID":"126:2854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2868","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1044.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2879","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1044.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1044.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2889","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1048.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2895","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1048.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2895.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1058.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2891.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2882","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Another ringtone"},{"UUID":"126:2883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2897","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1140.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2908","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1140.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2909","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1140.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2918","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1144.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2924","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1144.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2924.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1154.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2920.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Can’t attach"},{"UUID":"126:2912","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"03","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":280.0,"x":-8.0,"y":704.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:273","overrideProperties":[{"UUID":"126:2181","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2180","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Trash"},"type":"stringValue"},{"UUID":"126:2189","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape","child":null,"constraints":null,"value":{"UUID":"126:2189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1151.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2189.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2152","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2151","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2151","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home"},"type":"stringValue"},{"UUID":"126:2160","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape2","child":null,"constraints":null,"value":{"UUID":"126:2160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1055.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2160.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2123","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2122","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Diary"},"type":"stringValue"},{"UUID":"126:2131","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape3","child":null,"constraints":null,"value":{"UUID":"126:2131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1103.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2131.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2094","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2094","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2093","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2093","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Social"},"type":"stringValue"},{"UUID":"126:2102","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape4","child":null,"constraints":null,"value":{"UUID":"126:2102","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":815.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2102.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2065","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2065","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2064","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2064","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Spam"},"type":"stringValue"},{"UUID":"126:2073","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape5","child":null,"constraints":null,"value":{"UUID":"126:2073","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":959.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2073.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2036","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2036","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2035","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2035","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},"type":"stringValue"},{"UUID":"126:2044","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape6","child":null,"constraints":null,"value":{"UUID":"126:2044","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":719.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2044.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2007","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2006","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Work"},"type":"stringValue"},{"UUID":"126:2015","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape7","child":null,"constraints":null,"value":{"UUID":"126:2015","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1007.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2015.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1978","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:1977","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Promotions"},"type":"stringValue"},{"UUID":"126:1986","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape8","child":null,"constraints":null,"value":{"UUID":"126:1986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":911.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1986.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1949","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1949","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:1948","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Updates"},"type":"stringValue"},{"UUID":"126:1957","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape9","child":null,"constraints":null,"value":{"UUID":"126:1957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":863.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1957.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1920","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:1919","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1919","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Forums"},"type":"stringValue"},{"UUID":"126:1928","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape10","child":null,"constraints":null,"value":{"UUID":"126:1928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":767.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1928.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1794","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"𝍖 Patterns/Check/Simple","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":248.0,"x":0.0,"y":704.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1905","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":752.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1916","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":752.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1917","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":752.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1926","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":756.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1932","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":756.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1932.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":767.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1928.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1919","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Forums"},{"UUID":"126:1920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1934","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single True","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":848.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1945","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":848.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1946","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":848.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1955","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked filled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":852.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1961","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":852.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1961.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":863.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1957.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Updates"},{"UUID":"126:1949","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":896.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":896.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":896.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":900.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1990","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":900.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1990.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":911.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1986.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Promotions"},{"UUID":"126:1978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1992","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":992.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2003","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":992.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2004","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":992.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2013","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":996.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2019","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":996.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2019.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2015","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1007.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2015.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Work"},{"UUID":"126:2007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2021","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":704.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2032","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":704.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2033","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":704.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2042","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":708.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2048","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":708.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2048.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2044","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":719.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2044.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2035","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},{"UUID":"126:2036","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2050","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single False","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":944.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2061","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":944.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2062","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":944.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2071","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":948.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2077","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":948.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2077.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2073","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":959.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2073.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2064","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Spam"},{"UUID":"126:2065","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2079","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/True Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":800.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2090","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":800.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2091","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":800.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2100","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked filled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":804.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2106","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":804.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2106.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2102","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":815.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2102.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2093","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Social"},{"UUID":"126:2094","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1088.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1088.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1088.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1092.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2135","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1092.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2135.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1103.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2131.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Diary"},{"UUID":"126:2123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2137","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single False","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1040.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2148","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1040.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2149","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1040.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1044.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2164","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1044.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2164.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1055.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2160.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2151","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home"},{"UUID":"126:2152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2166","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single False","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1136.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1136.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1136.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1140.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2193","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1140.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2193.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1151.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2189.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Trash"},{"UUID":"126:2181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"02","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":336.0,"width":280.0,"x":328.0,"y":312.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:275","overrideProperties":[{"UUID":"126:1733","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1733","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":330.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1733.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1721","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1721","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":330.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1721.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1695","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":320.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1694","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":320.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"John Smith"},"type":"stringValue"},{"UUID":"126:1715","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1715.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1712","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1712","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":328.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1712.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1666","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off2","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":386.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1666.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1654","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector4","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":386.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1654.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1628","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter2","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":376.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1627","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":376.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Michael Norton"},"type":"stringValue"},{"UUID":"126:1648","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector5","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":388.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1648.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1645","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":384.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1645.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1599","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off3","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":442.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1599.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1587","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector7","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1587","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1587.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1561","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter3","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":432.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1560","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":432.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Harry Stapleton"},"type":"stringValue"},{"UUID":"126:1581","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector8","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1581","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":444.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1581.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1578","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1578","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":440.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1578.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1532","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off4","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1532","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":498.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1532.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1520","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector10","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":498.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1520.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1494","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter4","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":488.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1493","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1493","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":488.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Mary Green"},"type":"stringValue"},{"UUID":"126:1514","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector11","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":500.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1514.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1511","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector12","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1511","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":496.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1511.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1465","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off5","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":554.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1465.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1453","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector13","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":554.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1453.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1427","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter5","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":544.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1426","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":544.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Dmitry Novitsky"},"type":"stringValue"},{"UUID":"126:1447","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector14","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":556.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1447.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1444","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector15","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":552.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1444.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1398","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off6","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1398","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":610.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1398.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1386","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector16","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1386","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":610.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1386.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1360","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter6","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":600.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1359","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":600.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Add account"},"type":"stringValue"},{"UUID":"126:1380","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector17","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1380","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":365.0,"y":613.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1380.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1377","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector18","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":608.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1377.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":312.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1689","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":312.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1690","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":312.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1691","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":366.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1710","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":328.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1710.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1713","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":320.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1717","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":320.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1717.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1715.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":320.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"John Smith"},{"UUID":"126:1695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":320.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1719","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":328.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1723","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":328.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1723.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1721","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":330.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1721.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1725","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":328.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1730","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":328.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1730.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":368.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":368.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1623","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":368.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1624","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":422.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1643","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":384.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1643.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":376.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1650","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":376.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1650.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":388.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1648.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":376.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Michael Norton"},{"UUID":"126:1628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":376.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":384.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1656","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":384.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1656.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":386.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1654.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":384.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1663","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":384.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1663.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1533","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":424.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":424.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":424.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":478.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1576","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":440.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1576.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1579","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":432.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1583","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":432.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1583.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1581","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":444.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1581.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":432.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Harry Stapleton"},{"UUID":"126:1561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":432.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":440.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1589","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":440.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1589.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1587","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1587.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":440.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1596","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":440.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1596.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":480.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1488","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1489","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1490","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":534.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1509","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":496.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1509.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1512","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":488.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1516","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":488.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1516.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":500.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1514.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1493","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":488.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Mary Green"},{"UUID":"126:1494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":488.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1518","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":496.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1522","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":496.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1522.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":498.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1520.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1524","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":496.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1529","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":496.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1529.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1399","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":536.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":536.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":536.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":590.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1442","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":552.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1442.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":544.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1449","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":544.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1449.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":556.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1447.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":544.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Dmitry Novitsky"},{"UUID":"126:1427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":544.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":552.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1455","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":552.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1455.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":554.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1453.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":552.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1462","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":552.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1462.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":592.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1354","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":592.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":592.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1356","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":646.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1375","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":608.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1375.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1378","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon Add","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":600.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1382","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":600.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1382.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1380","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":365.0,"y":613.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1380.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":600.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Add account"},{"UUID":"126:1360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":600.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1384","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":608.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1388","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":608.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1388.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1386","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":610.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1386.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1390","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":608.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1395","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":608.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1395.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"01","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":304.0,"width":280.0,"x":-8.0,"y":311.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:282","overrideProperties":[{"UUID":"126:1326","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":329.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Superdesigner|"},"type":"stringValue"},{"UUID":"126:1325","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":312.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Username"},"type":"stringValue"},{"UUID":"126:1315","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":409.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"e.g. john@gmail.com"},"type":"stringValue"},{"UUID":"126:1314","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":392.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"E-mail"},"type":"stringValue"},{"UUID":"126:1304","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":569.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+7 (· · · ) · · · · · · ·"},"type":"stringValue"},{"UUID":"126:1303","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":552.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Phone number"},"type":"stringValue"},{"UUID":"126:1293","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":489.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"At least 8 symbols..."},"type":"stringValue"},{"UUID":"126:1292","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":472.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Password"},"type":"stringValue"}],"children":[{"UUID":"126:1316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":312.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Username"},{"UUID":"126:1326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":329.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Superdesigner|"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":392.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"E-mail"},{"UUID":"126:1315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":409.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"e.g. john@gmail.com"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":552.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Phone number"},{"UUID":"126:1304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":569.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+7 (· · · ) · · · · · · ·"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1291","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":472.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Password"},{"UUID":"126:1293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":489.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"At least 8 symbols..."}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true},{"UUID":"126:287","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Buttons","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/126:287.png","type":"screen","designNode":{"UUID":"126:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Buttons","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":824.0,"width":504.0,"x":-648.0,"y":31.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Header","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":96.0,"width":344.0,"x":-568.0,"y":111.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9803921580314636,"g":0.9803921580314636,"b":0.9803921580314636},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":344.0,"x":-568.0,"y":139.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":34.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Buttons"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":719.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:290","overrideProperties":[{"UUID":"126:1276","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-272.0,"y":739.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1276.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1269","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":731.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"},"type":"stringValue"}],"children":[{"UUID":"126:1267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Container/_icon-right","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":719.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":719.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":731.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"},{"UUID":"126:1274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-304.0,"y":719.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":true},"children":[{"UUID":"126:1278","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-304.0,"y":719.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-272.0,"y":739.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1276.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":623.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:292","overrideProperties":[{"UUID":"126:1254","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":635.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"},"type":"stringValue"},{"UUID":"126:1260","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-536.0,"y":643.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1260.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Container/_icon-left","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":623.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":623.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Left)","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-568.0,"y":623.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":true},"children":[{"UUID":"126:1262","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-568.0,"y":623.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1262.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-536.0,"y":643.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1260.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":635.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":519.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:294","overrideProperties":[{"UUID":"126:1244","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1244.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1246","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1246.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1244.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:296","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":519.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:296","overrideProperties":[{"UUID":"126:1232","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1232.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9058823585510254,"g":0.2980392277240753,"b":0.23529411852359772},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1234","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1232.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:298","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":519.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:298","overrideProperties":[{"UUID":"126:1220","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1220.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1222","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1220.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"09","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":519.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:300","overrideProperties":[{"UUID":"126:1208","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1208.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1200","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1210","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1208.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"08","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":431.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:302","overrideProperties":[{"UUID":"126:1196","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1196.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"edit","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1198","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1198.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1196.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"07","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":431.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:304","overrideProperties":[{"UUID":"126:1184","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1184.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.9058823585510254,"g":0.2980392277240753,"b":0.23529411852359772},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1186","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1186.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1184.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"06","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":431.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:306","overrideProperties":[{"UUID":"126:1172","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1172.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1170","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1174","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1174.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1172.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"05","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":431.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:308","overrideProperties":[{"UUID":"126:1160","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1160.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1153","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1162","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1162.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1160.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-304.0,"y":311.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:310","overrideProperties":[{"UUID":"126:1145","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1145","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-283.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1145.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1137","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-304.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1138","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-304.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1143","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1147","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1147.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1145","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-283.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1145.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"03","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-392.0,"y":311.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:312","overrideProperties":[{"UUID":"126:1133","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-371.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1133.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-392.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1126","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-392.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1135","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1135.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-371.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1133.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"02","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-480.0,"y":311.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:314","overrideProperties":[{"UUID":"126:1121","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-459.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1121.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-480.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1114","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-480.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1123","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1123.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-459.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1121.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"01","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-568.0,"y":311.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:316","overrideProperties":[{"UUID":"126:1109","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-547.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1109.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1101","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-568.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1102","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-568.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1111.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-547.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1109.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true},{"UUID":"126:318","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Colors","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/126:318.png","type":"screen","designNode":{"UUID":"126:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Colors","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1024.0,"width":712.0,"x":-64.0,"y":-1073.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Main","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:319","overrideProperties":[],"children":[{"UUID":"126:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":16.0,"y":-609.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Background"},{"UUID":"126:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Dark","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-681.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:322","overrideProperties":[],"children":[{"UUID":"126:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Main","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":208.0,"y":-609.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Main"},{"UUID":"126:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Accent | Error","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-681.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:325","overrideProperties":[],"children":[{"UUID":"126:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.772549033164978,"g":0.13333334028720856,"b":0.12156862765550613},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Accent | Error","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":400.0,"y":-609.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Accent | Error"},{"UUID":"126:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Primary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-489.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:328","overrideProperties":[],"children":[{"UUID":"126:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-489.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Primary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":16.0,"y":-417.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Primary"},{"UUID":"126:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Secondary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-489.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:331","overrideProperties":[],"children":[{"UUID":"126:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-489.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3764705955982208,"g":0.4941176474094391,"b":0.7450980544090271},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":208.0,"y":-417.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Secondary"},{"UUID":"126:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Tretiary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-489.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:334","overrideProperties":[],"children":[{"UUID":"126:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-489.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":0.7333333492279053,"b":0.07058823853731155},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tretiary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":400.0,"y":-417.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Tretiary"},{"UUID":"126:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Gradient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-297.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:337","overrideProperties":[],"children":[{"UUID":"126:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-297.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:339","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Gradient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":16.0,"y":-225.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Gradient"},{"UUID":"126:340","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":360.0,"x":400.0,"y":-297.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:340","overrideProperties":[],"children":[],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:341","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-297.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null},{"UUID":"126:342","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":208.0,"y":-225.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Icon"},{"UUID":"126:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-297.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9411764740943909,"g":0.9411764740943909,"b":0.9411764740943909},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null},{"UUID":"126:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Zajebiste Sdelano!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":168.0,"x":400.0,"y":-241.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Zajebiste\nSdelano!"},{"UUID":"126:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Header","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":96.0,"width":552.0,"x":16.0,"y":-993.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9803921580314636,"g":0.9803921580314636,"b":0.9803921580314636},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:346","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":51.0,"width":113.0,"x":16.0,"y":-965.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":34.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Colors"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"126:347","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Typography","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/126:347.png","type":"screen","designNode":{"UUID":"126:347","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Typography","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1024.0,"width":504.0,"x":-648.0,"y":-1073.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:349","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":344.0,"x":-568.0,"y":-965.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":34.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"poppins! Roboto"},{"UUID":"126:350","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14 sp • Body 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":-576.0,"y":-135.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:350","overrideProperties":[{"UUID":"126:351","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrBody 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:351","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":-576.0,"y":-135.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.07},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 2"},"type":"stringValue"}],"children":[{"UUID":"126:351","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":-576.0,"y":-135.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.07},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 2"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:352","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14 sp • BUTTON","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.0,"width":168.0,"x":-576.0,"y":-184.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:352","overrideProperties":[{"UUID":"126:353","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrTXT Medium 14 sp","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:353","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"TXT Medium 14 sp","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":60.0,"x":-576.0,"y":-184.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.75},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"BUTTON"},"type":"stringValue"}],"children":[{"UUID":"126:353","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"TXT Medium 14 sp","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":60.0,"x":-576.0,"y":-184.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.75},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"BUTTON"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:354","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14 sp • Subtitle 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-240.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:354","overrideProperties":[{"UUID":"126:355","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSubtitle 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Subtitle 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-240.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.10000000149011612},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Subtitle 2\n"},"type":"stringValue"}],"children":[{"UUID":"126:355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Subtitle 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-240.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.10000000149011612},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Subtitle 2\n"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:356","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"16 sp • Body 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-291.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:356","overrideProperties":[{"UUID":"126:357","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrBody 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":51.0,"x":-576.0,"y":-291.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 1"},"type":"stringValue"}],"children":[{"UUID":"126:357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":51.0,"x":-576.0,"y":-291.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 1"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:358","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"20 sp • H6 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-347.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:358","overrideProperties":[{"UUID":"126:359","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH6 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H6 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.0,"width":122.0,"x":-576.0,"y":-347.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H6 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H6 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.0,"width":122.0,"x":-576.0,"y":-347.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H6 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"24 sp • H5 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":168.0,"x":-576.0,"y":-408.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:360","overrideProperties":[{"UUID":"126:361","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH5 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H5 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":147.0,"x":-576.0,"y":-408.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H5 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H5 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":147.0,"x":-576.0,"y":-408.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H5 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:362","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"34 sp • H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":360.0,"x":-576.0,"y":-480.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:362","overrideProperties":[{"UUID":"126:363","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH4 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:363","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":51.0,"width":212.0,"x":-576.0,"y":-480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":34.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H4 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:363","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":51.0,"width":212.0,"x":-576.0,"y":-480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":34.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H4 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:364","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"48 sp • H3 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":57.0,"width":360.0,"x":-576.0,"y":-569.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:364","overrideProperties":[{"UUID":"126:365","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH3 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H3 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":72.0,"width":292.0,"x":-576.0,"y":-569.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":48.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H3 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H3 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":72.0,"width":292.0,"x":-576.0,"y":-569.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":48.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H3 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"60 sp • H2 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":71.0,"width":360.0,"x":-576.0,"y":-672.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:366","overrideProperties":[{"UUID":"126:367","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH2 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H2 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.0,"width":364.0,"x":-576.0,"y":-672.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":60.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H2 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H2 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.0,"width":364.0,"x":-576.0,"y":-672.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":60.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H2 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"96 sp • H1 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":113.0,"width":386.0,"x":-576.0,"y":-817.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:368","overrideProperties":[{"UUID":"126:369","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH1 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H1 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":113.0,"width":386.0,"x":-576.0,"y":-817.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":96.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":-1.5},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H1 Head"},"type":"stringValue"}],"children":[{"UUID":"126:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H1 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":113.0,"width":386.0,"x":-576.0,"y":-817.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":96.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":-1.5},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H1 Head"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true}],"type":"page"},{"UUID":"48:114","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"HI FI","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"133:26","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/133:26.png","type":"screen","designNode":{"UUID":"133:26","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":854.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"1003:474","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.0736083984375,"x":717.0,"y":-545.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"133:27","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1079.0,"y":-327.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","overrideProperties":null,"children":[{"UUID":"I133:27;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1122.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I133_27;75_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"I133:27;75:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":1098.0,"y":-326.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"I133:27;75:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1098.875,"y":-325.25,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I133_27;75_15.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"I133:27;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1079.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I133_27;75_18.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"I133:27;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1156.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"133:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":1134.0,"y":185.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"133:115","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Class","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":192.0,"x":879.0,"y":93.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Class"},{"UUID":"133:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":960.0,"y":242.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"133:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":1010.0,"y":242.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"133:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":1180.0,"y":189.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/133_118.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"144:32","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Destination_re_sr74 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":284.0,"width":399.0,"x":878.0,"y":-248.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/144_32.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"152:57","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":879.0,"y":-298.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"463:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our Rides are safe and fast","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":176.0,"x":880.0,"y":127.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our Rides are safe and fast"}]},"isVisible":true},{"UUID":"137:27","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/137:27.png","type":"screen","designNode":{"UUID":"137:27","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1254.0,"y":-344.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"149:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.0736083984375,"x":1145.0,"y":-543.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"137:28","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1479.0,"y":-327.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1556.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1522.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I137_28;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I137_28;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1498.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I137_28;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I137_28;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1479.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I137_28;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I137_28;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"137:29","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Get Started","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":74.0,"x":1498.0,"y":185.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Get Started"},{"UUID":"137:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":1360.0,"y":242.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"137:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":1461.0,"y":242.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"137:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":1580.0,"y":189.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/137_34.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"147:74","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Order_ride_re_372k 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":311.0,"width":663.0,"x":1224.0,"y":-277.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/147_74.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"137:31","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"We provide delivery service","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":313.0,"x":1276.0,"y":93.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"We provide delivery service"},{"UUID":"464:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our ride ease stress and saves time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":232.0,"x":1280.0,"y":127.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our ride ease stress and saves time"}]},"isVisible":true},{"UUID":"149:32","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/149:32.png","type":"screen","designNode":{"UUID":"149:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1654.0,"y":-344.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"815:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 161","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":598.0,"width":360.0,"x":1654.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"149:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1879.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1956.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1922.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I149_33;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I149_33;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1898.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I149_33;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I149_33;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1879.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I149_33;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I149_33;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"159:75","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":1733.0,"y":230.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"149:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":312.0,"width":360.0,"x":1654.0,"y":-344.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3803921639919281,"g":0.7058823704719543,"b":0.3607843220233917},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":180.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":180.0,"type":"rectangle","child":null},{"UUID":"159:68","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":1705.0,"y":11.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"159:69","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1681.0,"y":71.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"159:70","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1681.0,"y":71.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_70.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:71","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":1717.0,"y":82.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"159:72","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7034675467","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":1766.0,"y":82.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7034675467"},{"UUID":"159:73","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1930.0,"y":85.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"159:74","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":1697.0,"y":89.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_74.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"159:76","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":1681.0,"y":152.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:77","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":1811.0,"y":160.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"159:78","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1876.0,"y":230.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_78.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1836.0,"y":230.0,"z":8.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:82","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1836.0,"y":230.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:83","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":1836.0,"y":233.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_83.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"159:89","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1915.0,"y":230.0,"z":9.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:90","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1915.0,"y":230.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_90.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:92","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":1916.0,"y":233.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_92.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"815:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 160","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":209.99996948242188,"width":206.0001220703125,"x":1741.0,"y":-266.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/815_438.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"149:82","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/149:82.png","type":"screen","designNode":{"UUID":"149:82","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":455.0,"y":-344.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"149:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.0736083984375,"x":349.0,"y":-545.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"149:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":482.0,"y":77.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"463:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our rides are negotiable and convenient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":263.0,"x":480.0,"y":127.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our rides are negotiable and convenient"},{"UUID":"149:85","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":481.0,"y":94.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"149:86","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":561.0,"y":242.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"149:87","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":561.0,"y":242.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"350:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 147","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":56.0872802734375,"x":735.0,"y":186.0,"z":6.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"149:84","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":735.0,"y":186.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"149:88","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":781.0,"y":190.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_88.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"152:56","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":481.0,"y":-297.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"149:222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":268.20269775390625,"width":406.0957336425781,"x":456.9042663574219,"y":-258.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.2197265625,"width":0.05682373046875,"x":479.03253173828125,"y":-63.81378173828125,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_223.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2197723388671875,"width":3.5977783203125,"x":542.6530151367188,"y":-40.997833251953125,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_224.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.181320190429688,"width":8.8702392578125,"x":672.873779296875,"y":-235.738037109375,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":223.26889038085938,"width":75.3984375,"x":621.6570434570312,"y":-215.30508422851562,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_226.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":225.50778198242188,"width":30.41082763671875,"x":697.0554809570312,"y":-215.30508422851562,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_227.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":635.2796630859375,"y":-193.12445068359375,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_228.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":653.6536865234375,"y":-193.12445068359375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_229.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":672.0277709960938,"y":-193.12445068359375,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_230.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":635.596435546875,"y":-167.14060974121094,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_231.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":653.9705200195312,"y":-167.14060974121094,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":672.3446044921875,"y":-167.14060974121094,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":635.9132690429688,"y":-141.15676879882812,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":654.287353515625,"y":-141.15676879882812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_235.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":672.661376953125,"y":-141.15676879882812,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_236.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":636.2300415039062,"y":-115.17292785644531,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_237.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":654.6041259765625,"y":-115.17292785644531,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_238.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":672.9781494140625,"y":-115.17292785644531,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":636.5468139648438,"y":-89.1890869140625,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_240.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":654.9208984375,"y":-89.1890869140625,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_241.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":673.2949829101562,"y":-89.1890869140625,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_242.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":636.8636474609375,"y":-63.20526123046875,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_243.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":655.2376708984375,"y":-63.20526123046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_244.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":673.6117553710938,"y":-63.20526123046875,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_245.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":637.180419921875,"y":-37.221405029296875,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_246.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":655.554443359375,"y":-37.221405029296875,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_247.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":673.9285278320312,"y":-37.221405029296875,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_248.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9208526611328125,"width":11.403076171875,"x":637.498779296875,"y":-11.23822021484375,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.409912109375,"width":11.406982421875,"x":655.8701782226562,"y":-11.23828125,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_250.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":674.245361328125,"y":-11.237548828125,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_251.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.146377563476562,"width":8.87017822265625,"x":776.2531127929688,"y":-122.7779541015625,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_252.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":120.96284484863281,"width":75.39862060546875,"x":716.6956787109375,"y":-110.76014709472656,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_253.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":110.17411804199219,"width":30.4107666015625,"x":792.09423828125,"y":-110.76014709472656,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":731.5850830078125,"y":-89.1890869140625,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_255.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":749.9591674804688,"y":-89.1890869140625,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_256.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.4046630859375,"x":768.333251953125,"y":-89.1890869140625,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":731.9019775390625,"y":-63.20526123046875,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_258.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":750.2760009765625,"y":-63.20526123046875,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_259.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":768.6500244140625,"y":-63.20526123046875,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":732.2186889648438,"y":-37.221405029296875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_261.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":750.5927734375,"y":-37.221405029296875,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_262.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":768.9669189453125,"y":-37.221405029296875,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_263.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":732.5355224609375,"y":-11.237548828125,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_264.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":750.9095458984375,"y":-11.237548828125,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_265.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":769.2836303710938,"y":-11.237548828125,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_266.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.060516357421875,"width":45.38482666015625,"x":725.6204833984375,"y":13.41522216796875,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_267.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":73.21176147460938,"width":167.76763916015625,"x":486.627685546875,"y":-49.431365966796875,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_268.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":52.68495178222656,"width":35.3814697265625,"x":487.39715576171875,"y":-36.77655029296875,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_269.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.35690307617188,"width":50.77081298828125,"x":605.25634765625,"y":-26.356903076171875,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":79.50950622558594,"width":295.288330078125,"x":486.3021240234375,"y":-55.07318115234375,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.98503112792969,"width":206.46176147460938,"x":503.4184265136719,"y":-100.46965026855469,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.48428344726562,"width":293.6189270019531,"x":489.1209411621094,"y":-69.9349365234375,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_273.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.6736907958984375,"width":12.59234619140625,"x":530.0390014648438,"y":-55.204376220703125,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.545944213867188,"width":11.54296875,"x":670.7913818359375,"y":-6.0029296875,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.851654052734375,"width":30.0291748046875,"x":652.338134765625,"y":-55.4085693359375,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.840133666992188,"width":24.3431396484375,"x":754.21240234375,"y":-58.72076416015625,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.721405029296875,"width":28.9266357421875,"x":511.44769287109375,"y":-93.66177368164062,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.922271728515625,"width":44.81951904296875,"x":543.92041015625,"y":-98.82081604003906,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.514373779296875,"width":99.5128173828125,"x":598.0042724609375,"y":-98.50166320800781,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_280.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.985595703125,"width":151.69342041015625,"x":521.1966552734375,"y":-107.94476318359375,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.73707580566406,"width":17.839141845703125,"x":490.0391540527344,"y":-28.045166015625,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":46.97100830078125,"width":28.33270263671875,"x":609.40380859375,"y":-15.7120361328125,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.188919067382812,"width":11.8052978515625,"x":573.9879150390625,"y":-67.23382568359375,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_284.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.645248413085938,"width":20.4625244140625,"x":559.4281005859375,"y":-74.62258911132812,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_285.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.010284423828125,"width":85.91632080078125,"x":694.1397094726562,"y":-36.967041015625,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_286.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06146240234375,"width":68.81048583984375,"x":703.2335815429688,"y":-33.68849563598633,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_287.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1764373779296875,"width":74.84539794921875,"x":699.710205078125,"y":-31.194204330444336,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0953521728515625,"width":80.26806640625,"x":696.9125366210938,"y":-27.806407928466797,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_289.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 142","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.61727905273438,"width":93.19464111328125,"x":455.0,"y":-126.16268920898438,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_290.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"159:514","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Location pop up","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/159:514.png","type":"screen","designNode":{"UUID":"159:514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Location pop up","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2854.0,"y":-344.0,"z":5.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"281:925","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2597.0,"y":-497.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/281_925.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:98","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":499.9476318359375,"width":324.798095703125,"x":3134.855712890625,"y":-32.592529296875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"186:101","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.369384765625,"x":3260.345947265625,"y":25.62921142578125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_101.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:104","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.369384765625,"x":3326.781982421875,"y":269.90740966796875,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_104.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.369384765625,"x":3134.855712890625,"y":-32.592529296875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_107.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.369384765625,"x":3420.284423828125,"y":147.135498046875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_110.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.369384765625,"x":3305.866943359375,"y":426.85302734375,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_113.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"159:559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":429.0,"x":2825.0,"y":-344.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 144","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":2879.0,"y":-194.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":2879.0,"y":-194.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":281.634033203125,"x":2890.143798828125,"y":-173.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"159:563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":258.333251953125,"x":2902.0,"y":43.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:564","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":142.84326171875,"x":2960.0,"y":52.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}],"type":"group"},{"UUID":"201:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3079.0,"y":-323.0,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3156.0,"y":-323.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3122.0,"y":-322.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_335;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_335;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3098.875,"y":-321.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_335;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_335;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3079.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_335;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_335;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"}]},"isVisible":true},{"UUID":"159:582","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/159:582.png","type":"screen","designNode":{"UUID":"159:582","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3254.0,"y":-344.0,"z":6.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"279:898","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2966.0,"y":-747.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/279_898.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"796:408","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2975.0,"y":-735.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/796_408.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:896","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2940.0,"y":-506.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"279:899","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.369384765625,"x":3759.345947265625,"y":-135.3785400390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_899.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:902","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.369384765625,"x":3825.781982421875,"y":102.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_902.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:905","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.369384765625,"x":3633.855712890625,"y":-191.97216796875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_905.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:908","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36945724487305,"width":39.369384765625,"x":3919.284423828125,"y":-17.2701416015625,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_908.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.369384765625,"x":3804.866943359375,"y":254.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_911.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:914","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.2119140625,"x":3673.225341796875,"y":70.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"279:915","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.2119140625,"x":3673.225341796875,"y":70.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/279_915.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:916","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.763427734375,"x":3690.449462890625,"y":87.30470275878906,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/279_916.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"186:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3549.0,"y":-36.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"186:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3549.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/186_121.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":3563.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/186_122.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"176:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3279.0,"y":-33.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/176_80.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3279.0,"y":-294.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_128.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"176:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3337.0,"y":-33.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/176_81.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:636","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":3289.0,"y":-23.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_636.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:638","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":3348.0,"y":-22.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_638.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":3315.0,"y":86.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"159:601","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":3292.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_601.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":3457.0,"y":86.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"159:611","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":3330.0,"y":127.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"189:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":3463.0,"y":127.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"159:620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":3338.0,"y":102.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_620.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:626","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":3482.0,"y":102.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_626.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:632","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":3279.0,"y":-214.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":3289.0,"y":-199.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_633.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:634","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":3315.0,"y":-202.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"159:642","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":3385.0,"y":212.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"159:635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":3279.0,"y":-246.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "}]},"isVisible":true},{"UUID":"159:586","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Notification","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/159:586.png","type":"screen","designNode":{"UUID":"159:586","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3478.0,"y":-500.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3555.0,"y":-500.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3521.0,"y":-499.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_586;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_586;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3497.875,"y":-498.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_586;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_586;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3478.0,"y":-498.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_586;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_586;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},"isVisible":true},{"UUID":"159:94","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/159:94.png","type":"screen","designNode":{"UUID":"159:94","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2054.0,"y":-344.0,"z":4.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"159:96","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2279.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2356.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2322.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_96;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_96;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2298.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_96;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_96;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2279.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_96;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_96;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"159:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":2176.0,"y":-225.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"159:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":2152.0,"y":-44.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"159:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":2097.0,"y":-179.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"159:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":2133.0,"y":-208.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"159:164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2134.0,"y":-103.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_164.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2191.0,"y":-103.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_165.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:166","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2247.0,"y":-103.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_166.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2299.0,"y":-103.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_167.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":2080.0,"y":-10.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:169","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":2213.0,"y":-2.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"159:300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":2054.0,"y":59.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"159:300","overrideProperties":[{"UUID":"159:369","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":2374.0,"y":264.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_369.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:368","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":2374.0,"y":264.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_368.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:366","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2367.0,"y":254.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_366.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:374","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":2156.0,"y":265.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_374.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:373","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 4","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":2161.0,"y":261.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_373.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:372","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":2156.0,"y":261.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_372.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:371","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2152.0,"y":256.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_371.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:345","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr?123","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":2069.0,"y":251.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"type":"stringValue"},{"UUID":"159:344","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr,","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2110.0,"y":254.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"type":"stringValue"},{"UUID":"159:343","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr.","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2323.0,"y":254.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"type":"stringValue"},{"UUID":"159:377","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrPolygon 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":2368.0,"y":213.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_377.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:382","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShift","child":null,"constraints":null,"value":{"UUID":"159:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":2078.33984375,"y":214.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/159_382.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:338","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrp","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":117.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"type":"stringValue"},{"UUID":"159:337","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr0","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":75.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"type":"stringValue"},{"UUID":"159:336","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrl","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2357.0,"y":160.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"type":"stringValue"},{"UUID":"159:335","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovro","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":117.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"type":"stringValue"},{"UUID":"159:334","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr9","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":75.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"type":"stringValue"},{"UUID":"159:333","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrk","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2322.0,"y":160.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"type":"stringValue"},{"UUID":"159:332","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovri","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":117.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"type":"stringValue"},{"UUID":"159:331","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr8","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":75.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"type":"stringValue"},{"UUID":"159:330","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrm","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2323.0,"y":203.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"type":"stringValue"},{"UUID":"159:329","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrj","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2287.0,"y":160.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"type":"stringValue"},{"UUID":"159:328","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovru","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":117.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"type":"stringValue"},{"UUID":"159:327","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr7","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":75.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"type":"stringValue"},{"UUID":"159:326","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrn","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2288.0,"y":203.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"type":"stringValue"},{"UUID":"159:325","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrh","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2252.0,"y":160.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"type":"stringValue"},{"UUID":"159:324","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovry","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":117.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"type":"stringValue"},{"UUID":"159:323","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr6","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":75.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"type":"stringValue"},{"UUID":"159:322","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrb","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2253.0,"y":203.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"type":"stringValue"},{"UUID":"159:321","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrg","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2217.0,"y":160.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"type":"stringValue"},{"UUID":"159:320","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrt","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":117.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"type":"stringValue"},{"UUID":"159:319","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr5","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":75.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"type":"stringValue"},{"UUID":"159:318","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrv","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2218.0,"y":203.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"type":"stringValue"},{"UUID":"159:317","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrf","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2182.0,"y":160.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"type":"stringValue"},{"UUID":"159:316","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrr","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":117.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"type":"stringValue"},{"UUID":"159:315","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr4","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":75.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"type":"stringValue"},{"UUID":"159:314","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrc","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2183.0,"y":203.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"type":"stringValue"},{"UUID":"159:313","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrd","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2147.0,"y":160.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"type":"stringValue"},{"UUID":"159:312","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovre","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":117.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"type":"stringValue"},{"UUID":"159:311","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr3","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":75.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"type":"stringValue"},{"UUID":"159:310","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrx","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2148.0,"y":203.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"type":"stringValue"},{"UUID":"159:309","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrs","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2112.0,"y":160.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"type":"stringValue"},{"UUID":"159:308","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrw","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":117.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"type":"stringValue"},{"UUID":"159:307","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr2","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":75.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"type":"stringValue"},{"UUID":"159:306","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrz","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2113.0,"y":203.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"type":"stringValue"},{"UUID":"159:305","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovra","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2077.0,"y":160.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"type":"stringValue"},{"UUID":"159:304","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrq","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":117.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"type":"stringValue"},{"UUID":"159:303","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr1","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":75.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"type":"stringValue"}],"children":[{"UUID":"159:301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":2054.0,"y":59.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":2060.0,"y":75.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":75.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"159:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":117.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"159:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2077.0,"y":160.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"159:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2113.0,"y":203.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"159:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":75.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"159:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":117.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"159:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2112.0,"y":160.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"159:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2148.0,"y":203.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"159:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":75.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"159:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":117.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"159:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2147.0,"y":160.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"159:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2183.0,"y":203.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"159:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":75.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"159:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":117.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"159:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2182.0,"y":160.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"159:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2218.0,"y":203.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"159:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":75.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"159:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":117.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"159:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2217.0,"y":160.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"159:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2253.0,"y":203.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"159:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":75.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"159:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":117.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"159:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2252.0,"y":160.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"159:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2288.0,"y":203.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"159:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":75.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"159:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":117.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"159:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2287.0,"y":160.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"159:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2323.0,"y":203.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"159:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":75.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"159:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":117.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"159:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2322.0,"y":160.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"159:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":75.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"159:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":117.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"159:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2357.0,"y":160.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"159:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":75.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"159:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":117.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"159:381","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":2078.33984375,"y":214.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_381.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":2368.0,"y":213.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":2374.0,"y":214.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":2368.0,"y":213.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_377.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:378","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5,"width":6.0,"x":2377.0,"y":218.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_378.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"159:341","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":2183.0,"y":247.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_341.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2323.0,"y":254.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"159:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2110.0,"y":254.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"159:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":2069.0,"y":251.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"159:370","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2152.0,"y":256.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_370.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2367.0,"y":254.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2367.0,"y":254.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_366.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":2374.0,"y":264.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_367.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true},{"UUID":"201:80","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiation feature","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/201:80.png","type":"screen","designNode":{"UUID":"201:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation feature","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4454.0,"y":-344.0,"z":11.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"201:99","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":4679.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":4756.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":4722.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_99;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_99;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":4698.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_99;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_99;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":4679.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_99;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_99;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"201:103","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":4560.0,"y":-258.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"201:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":4562.0,"y":-233.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"1214:408","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 162","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":230.0,"width":310.0,"x":4479.0,"y":-58.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"201:108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":4480.0,"y":-29.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"201:109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":4480.0,"y":11.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"201:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":230.0,"width":310.0,"x":4479.0,"y":-58.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"201:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Step 1: Select your mode of transportation Step 2: Negotiate with the driver for lower price Step 3: Request a your cab to start trip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":148.0,"width":285.0,"x":4490.0,"y":5.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Step 1: Select your mode of transportation\n\nStep 2: Negotiate with the driver for lower price\n\nStep 3: Request a your cab to start trip"},{"UUID":"201:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Using the Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":284.0,"x":4490.0,"y":-39.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Using the Negotiation Feature"}],"type":"group"},{"UUID":"201:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":4590.0,"y":252.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"201:155","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"undraw_conversation_h12g 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":181.0,"width":279.0,"x":4492.0,"y":-258.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"201:156","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":180.9868621826172,"width":278.99609375,"x":4492.0048828125,"y":-257.9845886230469,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_156.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:157","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":170.74034118652344,"width":278.82470703125,"x":4492.1201171875,"y":-256.5289001464844,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_157.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.409164428710938,"width":228.6171875,"x":4492.0048828125,"y":-132.35848999023438,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_158.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.068038940429688,"width":228.6171875,"x":4492.0048828125,"y":-129.01736450195312,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_159.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":133.74151611328125,"width":91.8857421875,"x":4608.9052734375,"y":-216.7479248046875,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_160.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.85546875,"x":4619.41943359375,"y":-114.96939086914062,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_161.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.85546875,"x":4619.41943359375,"y":-114.96939086914062,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_162.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560546875,"x":4649.42529296875,"y":-90.70497131347656,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_163.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560546875,"x":4649.42529296875,"y":-90.70497131347656,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_164.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.169921875,"x":4652.7314453125,"y":-91.4290771484375,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_165.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:166","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.169921875,"x":4652.7314453125,"y":-91.4290771484375,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_166.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.5897216796875,"width":34.01708984375,"x":4659.47607421875,"y":-88.4639892578125,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_167.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2659454345703125,"width":6.48046875,"x":4661.7685546875,"y":-87.22409057617188,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_168.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:169","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49951171875,"x":4661.51611328125,"y":-87.24188232421875,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_169.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:170","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49951171875,"x":4661.51611328125,"y":-87.24188232421875,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_170.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:171","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06097412109375,"width":33.9619140625,"x":4659.53173828125,"y":-88.4639892578125,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_171.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.19842529296875,"width":37.0732421875,"x":4658.50341796875,"y":-91.13943481445312,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_172.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:173","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.509490966796875,"width":40.68994140625,"x":4657.37890625,"y":-95.28091430664062,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_173.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:174","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.14971923828125,"width":82.1630859375,"x":4617.29443359375,"y":-112.43988037109375,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_174.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:175","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.872444152832031,"width":33.60791015625,"x":4609.33154296875,"y":-138.47586059570312,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_175.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.557296752929688,"width":22.9375,"x":4632.9970703125,"y":-153.87127685546875,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_176.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.559852600097656,"width":22.9375,"x":4632.9970703125,"y":-153.77981567382812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_177.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.388252258300781,"width":14.48291015625,"x":4633.50146484375,"y":-137.68951416015625,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_178.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:179","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.370384216308594,"width":10.08154296875,"x":4632.857421875,"y":-136.02227783203125,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_179.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.388252258300781,"width":14.48193359375,"x":4632.9970703125,"y":-137.68951416015625,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_180.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.390426635742188,"width":14.48193359375,"x":4632.9970703125,"y":-137.5113067626953,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_181.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.910018920898438,"width":19.31396484375,"x":4643.958984375,"y":-196.8544464111328,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_182.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:183","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.314910888671875,"width":10.61328125,"x":4643.9541015625,"y":-196.8544464111328,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_183.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.509552001953125,"width":24.125,"x":4630.92333984375,"y":-211.29299926757812,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_184.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.017349243164062,"width":46.52880859375,"x":4652.9287109375,"y":-112.447509765625,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":98.12994384765625,"width":56.2294921875,"x":4644.12939453125,"y":-191.21307373046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_186.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.6978759765625,"width":29.44970703125,"x":4631.7158203125,"y":-125.22908020019531,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.9834747314453125,"width":6.525390625,"x":4676.93798828125,"y":-167.79318237304688,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_188.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.237457275390625,"width":25.26513671875,"x":4667.865234375,"y":-125.85411071777344,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_189.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.13446044921875,"width":23.68505859375,"x":4631.36328125,"y":-211.2978057861328,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_190.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:191","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.74609375,"width":35.1640625,"x":4624.16162109375,"y":-215.7036590576172,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_191.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:192","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.92510986328125,"width":13.2421875,"x":4647.92333984375,"y":-125.22908020019531,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_192.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:193","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6055908203125,"width":29.4453125,"x":4646.78369140625,"y":-188.8612823486328,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_193.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.36421966552734,"width":25.83837890625,"x":4649.38427734375,"y":-189.4024658203125,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_194.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6106948852539,"width":29.43603515625,"x":4646.2822265625,"y":-189.4024658203125,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_195.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.970703125,"x":4646.5302734375,"y":-128.5371551513672,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_196.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:197","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.97119140625,"x":4646.27734375,"y":-128.27035522460938,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_197.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:198","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.058914184570312,"width":35.146484375,"x":4624.18310546875,"y":-204.0164794921875,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_198.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.3701324462890625,"width":4.4716796875,"x":4607.35400390625,"y":-91.16229248046875,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_201.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:202","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":111.50717163085938,"width":54.5185546875,"x":4558.84228515625,"y":-211.30555725097656,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_202.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:203","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.533203125,"x":4576.14794921875,"y":-114.88555908203125,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_203.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:204","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.533203125,"x":4576.14794921875,"y":-114.88555908203125,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_204.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.656272888183594,"width":12.87744140625,"x":4562.81201171875,"y":-135.84442138671875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_205.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.322837829589844,"width":14.50830078125,"x":4552.27783203125,"y":-138.8756103515625,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_206.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.331558227539062,"width":14.505859375,"x":4552.78515625,"y":-138.78919982910156,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_207.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.45648193359375,"width":20.595703125,"x":4540.2001953125,"y":-204.5166015625,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_208.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:209","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.34686279296875,"width":36.994140625,"x":4547.67138671875,"y":-88.84257507324219,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_209.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:210","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.862640380859375,"width":7.50390625,"x":4541.9912109375,"y":-89.82585144042969,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:211","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.5087890625,"x":4541.734375,"y":-89.82585144042969,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_211.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9962615966796875,"width":7.169921875,"x":4582.47216796875,"y":-88.48686218261719,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_212.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.16748046875,"x":4582.7265625,"y":-88.48686218261719,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_213.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:214","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.5087890625,"x":4541.734375,"y":-89.82585144042969,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_214.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:215","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.16748046875,"x":4582.7265625,"y":-88.48686218261719,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_215.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.960113525390625,"width":12.6953125,"x":4547.5634765625,"y":-204.52423095703125,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_216.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.329742431640625,"width":26.7919921875,"x":4547.078125,"y":-218.33953857421875,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_217.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.241928100585938,"width":26.2548828125,"x":4547.05029296875,"y":-218.3343963623047,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_218.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.654052734375,"width":33.6865234375,"x":4543.08154296875,"y":-222.19964599609375,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_219.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7603607177734375,"width":2.8818359375,"x":4555.30029296875,"y":-135.21942138671875,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_220.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.28337097167969,"width":97.68408203125,"x":4517.45068359375,"y":-120.84367370605469,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_221.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5286865234375,"width":7.8232421875,"x":4542.9404296875,"y":-110.33245849609375,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.7091217041015625,"width":4.7109375,"x":4556.67626953125,"y":-105.70063781738281,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_223.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.860107421875,"width":4.8056640625,"x":4605.24853515625,"y":-96.24639892578125,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_224.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.226776123046875,"width":47.59814453125,"x":4542.29638671875,"y":-89.82585144042969,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.59661865234375,"width":55.923828125,"x":4538.01953125,"y":-91.69841003417969,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_226.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.663070678710938,"width":41.40673828125,"x":4517.43408203125,"y":-120.85383605957031,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_227.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.9999771118164,"width":47.2255859375,"x":4512.55908203125,"y":-193.13336181640625,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_228.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.093452453613281,"width":13.7568359375,"x":4540.25927734375,"y":-130.13531494140625,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_229.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.346038818359375,"width":12.65087890625,"x":4540.38623046875,"y":-141.46206665039062,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_230.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.183670043945312,"width":6.81396484375,"x":4546.88134765625,"y":-147.17376708984375,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_231.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.5859375,"width":11.06884765625,"x":4534.06201171875,"y":-171.78375244140625,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.262794494628906,"width":20.61572265625,"x":4520.27734375,"y":-146.18795776367188,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.871017456054688,"width":14.13427734375,"x":4598.07861328125,"y":-115.15995788574219,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":44.62644958496094,"width":15.66650390625,"x":4544.11767578125,"y":-188.7512969970703,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_235.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9530487060546875,"width":11.93017578125,"x":4587.91455078125,"y":-112.46163940429688,"z":78.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_236.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.1304931640625,"width":3.63525390625,"x":4598.1318359375,"y":-115.15995788574219,"z":79.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_237.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":82.25939178466797,"width":56.3740234375,"x":4544.89208984375,"y":-189.28884887695312,"z":80.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_238.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7742156982421875,"width":6.642578125,"x":4567.54541015625,"y":-148.832275390625,"z":81.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.4514007568359375,"width":5.36962890625,"x":4566.36328125,"y":-138.00094604492188,"z":82.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_240.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.759552001953125,"width":11.05322265625,"x":4553.20556640625,"y":-179.27651977539062,"z":83.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_241.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.236785888671875,"width":33.6708984375,"x":4543.07666015625,"y":-213.96829223632812,"z":84.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_242.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.53955078125,"x":4497.7021484375,"y":-147.25204467773438,"z":85.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_247.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.53955078125,"x":4497.7021484375,"y":-147.25204467773438,"z":86.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_248.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.515533447265625,"width":1.8505859375,"x":4497.89599609375,"y":-146.68356323242188,"z":87.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7698211669921875,"width":0.849609375,"x":4500.0869140625,"y":-147.25143432617188,"z":88.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_250.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0737457275390625,"width":1.03515625,"x":4504.1201171875,"y":-147.15646362304688,"z":89.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_251.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.159088134765625,"width":1.8369140625,"x":4505.59033203125,"y":-146.53799438476562,"z":90.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_252.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.506683349609375,"width":0.81201171875,"x":4498.9345703125,"y":-145.67471313476562,"z":91.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_253.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.5869140625,"width":0.41552734375,"x":4500.0927734375,"y":-146.06854248046875,"z":92.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.79107666015625,"width":3.365234375,"x":4498.91455078125,"y":-145.8669891357422,"z":93.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_255.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.66058349609375,"width":0.49267578125,"x":4504.66064453125,"y":-145.74331665039062,"z":94.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_256.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.242431640625,"width":0.7470703125,"x":4505.59033203125,"y":-145.62643432617188,"z":95.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.27117919921875,"width":4.0849609375,"x":4502.310546875,"y":-145.54736328125,"z":96.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_258.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.73779296875,"x":4498.31982421875,"y":-132.4829864501953,"z":97.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_259.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.49951171875,"x":4497.40673828125,"y":-137.668701171875,"z":98.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.73779296875,"x":4498.31982421875,"y":-132.4829864501953,"z":99.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_261.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.49951171875,"x":4497.40673828125,"y":-137.668701171875,"z":100.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_262.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.73779296875,"x":4498.69677734375,"y":-132.4829864501953,"z":101.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_263.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2195587158203125,"width":1.376953125,"x":4500.90283203125,"y":-142.29547119140625,"z":102.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_264.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.663604736328125,"width":1.8017578125,"x":4502.310546875,"y":-141.93978881835938,"z":103.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_265.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.356536865234375,"width":4.884765625,"x":4499.23046875,"y":-142.12835693359375,"z":104.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_266.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4499.888671875,"y":-144.53390502929688,"z":105.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_267.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4499.8740234375,"y":-143.60397338867188,"z":106.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_268.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.3798828125,"x":4505.3427734375,"y":-144.35093688964844,"z":107.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_269.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014739990234375,"width":0.3798828125,"x":4500.943359375,"y":-139.58192443847656,"z":108.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4504.951171875,"y":-142.80618286132812,"z":109.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4503.00244140625,"y":-140.74560546875,"z":110.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4500.5322265625,"y":-144.135009765625,"z":111.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_273.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4504.82421875,"y":-143.75387573242188,"z":112.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4504.18017578125,"y":-142.20909118652344,"z":113.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4502.2001953125,"y":-139.73182678222656,"z":114.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4501.79150390625,"y":-140.71258544921875,"z":115.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4500.81591796875,"y":-142.9230499267578,"z":116.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.581817626953125,"width":5.73779296875,"x":4498.69677734375,"y":-132.4829864501953,"z":117.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.49951171875,"x":4497.78369140625,"y":-137.668701171875,"z":118.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_280.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.3798828125,"x":4502.45263671875,"y":-138.8349151611328,"z":119.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.40142822265625,"width":0.3798828125,"x":4501.3203125,"y":-138.58340454101562,"z":120.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.2418670654296875,"width":6.84326171875,"x":4724.2119140625,"y":-171.2761688232422,"z":121.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0942840576171875,"width":7.04296875,"x":4723.435546875,"y":-176.99705505371094,"z":122.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_284.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.396514892578125,"width":6.802734375,"x":4723.2119140625,"y":-183.5743408203125,"z":123.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_285.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2618408203125,"width":6.39404296875,"x":4723.28173828125,"y":-189.83880615234375,"z":124.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_286.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2097320556640625,"width":6.271484375,"x":4723.7119140625,"y":-195.59494018554688,"z":125.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_287.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.639190673828125,"width":5.478515625,"x":4724.31494140625,"y":-201.41445922851562,"z":126.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2234344482421875,"width":4.6806640625,"x":4724.82421875,"y":-207.91363525390625,"z":127.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_289.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0074615478515625,"width":4.1904296875,"x":4725.0380859375,"y":-214.01150512695312,"z":128.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_290.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:291","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.194686889648438,"width":1.783203125,"x":4725.03369140625,"y":-222.58917236328125,"z":129.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_291.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.892318725585938,"width":2.89990234375,"x":4722.06103515625,"y":-230.63327026367188,"z":130.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_292.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.567901611328125,"width":6.26171875,"x":4717.6904296875,"y":-162.89166259765625,"z":131.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_293.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1551513671875,"width":7.68896484375,"x":4716.62109375,"y":-169.49844360351562,"z":132.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_294.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:295","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2594451904296875,"width":7.669921875,"x":4716.046875,"y":-175.70408630371094,"z":133.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_295.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:296","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.728424072265625,"width":6.5380859375,"x":4717.13525390625,"y":-184.0205841064453,"z":134.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_296.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:297","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9545135498046875,"width":5.61767578125,"x":4717.8173828125,"y":-190.54420471191406,"z":135.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_297.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:298","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.454254150390625,"width":6.00732421875,"x":4718.24755859375,"y":-196.15451049804688,"z":136.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_298.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:299","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9043731689453125,"width":3.892578125,"x":4720.7998046875,"y":-202.79396057128906,"z":137.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_299.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.5308837890625,"width":4.2412109375,"x":4720.70849609375,"y":-208.34811401367188,"z":138.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_300.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.640106201171875,"width":3.18603515625,"x":4722.265625,"y":-214.25033569335938,"z":139.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_301.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.307937622070312,"width":4.25537109375,"x":4721.04443359375,"y":-222.00732421875,"z":140.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_302.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.194015502929688,"width":7.28564453125,"x":4717.4765625,"y":-228.21697998046875,"z":141.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_303.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.97296142578125,"width":7.44873046875,"x":4715.359375,"y":-232.32797241210938,"z":142.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_304.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.97601318359375,"width":2.87060546875,"x":4722.41455078125,"y":-224.92413330078125,"z":143.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_305.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.387466430664062,"width":2.087890625,"x":4723.1640625,"y":-207.71798706054688,"z":144.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_306.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.034042358398438,"width":2.044921875,"x":4723.07275390625,"y":-183.12579345703125,"z":145.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_307.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.219207763671875,"width":5.43994140625,"x":4742.42041015625,"y":-178.61740112304688,"z":146.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_308.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.465606689453125,"width":7.5400390625,"x":4742.8076171875,"y":-184.40798950195312,"z":147.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_309.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.13604736328125,"width":7.732421875,"x":4743.55712890625,"y":-190.58685302734375,"z":148.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_310.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.921234130859375,"width":7.65087890625,"x":4744.5205078125,"y":-196.73797607421875,"z":149.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_311.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.80780029296875,"width":7.5400390625,"x":4746.0703125,"y":-202.20916748046875,"z":150.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_312.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.376251220703125,"width":6.58642578125,"x":4747.970703125,"y":-207.88772583007812,"z":151.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_313.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0902252197265625,"width":5.88232421875,"x":4749.66015625,"y":-214.26046752929688,"z":152.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_314.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9936981201171875,"width":5.25732421875,"x":4751.20068359375,"y":-220.28721618652344,"z":153.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_315.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.724624633789062,"width":3.255859375,"x":4751.8515625,"y":-229.36288452148438,"z":154.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_316.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.235321044921875,"width":1.4052734375,"x":4752.6806640625,"y":-238.10824584960938,"z":155.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_317.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.867462158203125,"width":3.0205078125,"x":4734.66162109375,"y":-171.76087951660156,"z":156.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_318.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.7657623291015625,"width":7.24462890625,"x":4735.1708984375,"y":-178.8802490234375,"z":157.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_319.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.8140869140625,"width":7.28564453125,"x":4735.79833984375,"y":-185.03988647460938,"z":158.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_320.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9170684814453125,"width":5.34619140625,"x":4738.77783203125,"y":-193.5251922607422,"z":159.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_321.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.94354248046875,"width":4.185546875,"x":4740.72900390625,"y":-199.76535034179688,"z":160.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_322.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.597976684570312,"width":4.642578125,"x":4742.2353515625,"y":-205.18482971191406,"z":161.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_323.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.5115966796875,"width":2.58154296875,"x":4745.9111328125,"y":-211.14295959472656,"z":162.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_324.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.254989624023438,"width":2.79833984375,"x":4747.005859375,"y":-216.59800720214844,"z":163.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_325.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.074600219726562,"width":2.1318359375,"x":4749.4462890625,"y":-222.0352783203125,"z":164.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_326.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.016815185546875,"width":2.447265625,"x":4749.72412109375,"y":-229.89390563964844,"z":165.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_327.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.604141235351562,"width":5.52685546875,"x":4747.72314453125,"y":-236.7463836669922,"z":166.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_328.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.378005981445312,"width":5.81005859375,"x":4746.455078125,"y":-241.22830200195312,"z":167.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_329.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.189422607421875,"width":2.21875,"x":4750.94580078125,"y":-232.43975830078125,"z":168.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_330.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.457550048828125,"width":6.9921875,"x":4744.359375,"y":-214.98208618164062,"z":169.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_331.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.145172119140625,"width":2.806640625,"x":4742.05029296875,"y":-191.38333129882812,"z":170.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_332.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"203:144","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":4481.0,"y":-294.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_144.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"1214:409","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 163","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":308.0,"x":4479.0,"y":204.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"201:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn more","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":4479.0,"y":210.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn more"},{"UUID":"201:132","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":166.0,"x":4621.0,"y":204.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"201:134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":121.0,"x":4628.0,"y":209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate Ride"},{"UUID":"203:146","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":4761.0,"y":214.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_146.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"203:154","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Search","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/203:154.png","type":"screen","designNode":{"UUID":"203:154","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3654.0,"y":-344.0,"z":10.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"203:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3878.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3955.0,"y":-320.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3921.0,"y":-319.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_229;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_229;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3897.875,"y":-318.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_229;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_229;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3878.0,"y":-318.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_229;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_229;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"203:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":3679.0,"y":202.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"203:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Done","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":3810.0,"y":214.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Done"},{"UUID":"435:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 50","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":106.0,"width":311.0,"x":3679.0,"y":-258.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"203:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":0.0,"x":3699.5,"y":-213.00758361816406,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"203:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":270.0,"x":3719.0,"y":-200.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"203:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Area 11, Garki area........","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":3729.0,"y":-228.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Area 11, Garki area........"},{"UUID":"203:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":39.0,"x":3717.0,"y":-132.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home."},{"UUID":"203:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":136.0,"x":3729.0,"y":-190.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"203:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"University of Abuja, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":155.0,"x":3717.0,"y":-109.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"University of Abuja, Abuja"},{"UUID":"203:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"46 Kbuwa, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":3717.0,"y":-86.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"46 Kbuwa, Abuja"},{"UUID":"203:274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":3691.0,"y":-224.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":3691.0,"y":-187.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":13.0,"x":3691.0,"y":-131.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.383148193359375,"width":12.383056640625,"x":3691.673828125,"y":-107.06521606445312,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.383148193359375,"width":12.383056640625,"x":3691.673828125,"y":-83.478271484375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_280.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"203:89","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/203:89.png","type":"screen","designNode":{"UUID":"203:89","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4054.0,"y":-344.0,"z":8.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"281:926","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":4025.0,"y":-814.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/281_926.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:90","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Mapsicle Map","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4054.0,"y":-344.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"203:92","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4349.0,"y":-36.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"203:93","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4349.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_93.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:94","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":4363.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_94.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"203:96","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4079.0,"y":-33.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_96.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:97","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4079.0,"y":-294.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_97.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:98","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4137.0,"y":-33.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_98.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:99","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":4089.0,"y":-23.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_99.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:100","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":4148.0,"y":-22.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_100.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:103","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":4122.0,"y":54.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"203:104","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":4092.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_104.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:106","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":4248.0,"y":54.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"203:107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":4137.0,"y":95.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"203:108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":4254.0,"y":95.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"203:109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":4145.0,"y":70.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_109.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:115","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":4153.23046875,"y":-200.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_115.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":4273.0,"y":70.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_116.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.22802734375,"x":4135.0,"y":-168.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":4079.0,"y":-217.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"203:126","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":4089.0,"y":-202.0,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_126.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":4115.0,"y":-205.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"203:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":4185.0,"y":212.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"203:134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":4079.0,"y":-251.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"203:91","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":4279.0,"y":-327.0,"z":22.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":4356.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":4322.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_91;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_91;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":4298.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_91;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_91;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":4279.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_91;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_91;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"203:141","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 145","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":4025.0,"y":-344.0,"z":23.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"189:149","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":4025.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"189:150","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":4075.0,"y":-272.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/189_150.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"189:152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":4156.0,"y":-258.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"189:153","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":4075.0,"y":-155.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"189:154","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":4075.0,"y":-115.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"189:155","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notifications","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":102.0,"x":4075.0,"y":-75.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Notifications"},{"UUID":"189:156","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":4075.0,"y":5.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"461:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":104.0,"x":4075.0,"y":-35.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi delivery"},{"UUID":"189:157","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":4075.0,"y":45.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"189:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":4075.0,"y":85.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"189:159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":4158.0,"y":-233.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"189:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":4063.0,"y":-318.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"189:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":4078.0,"y":176.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"189:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":4098.0,"y":188.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"189:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":4099.0,"y":209.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"189:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":4248.0,"y":198.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/189_165.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"229:431","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":4081.0,"y":243.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"218:86","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/218:86.png","type":"screen","designNode":{"UUID":"218:86","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4854.0,"y":-344.0,"z":17.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"281:993","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":4473.0,"y":-568.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/281_993.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5149.0,"y":-36.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"224:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5149.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_307.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":5163.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_308.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"224:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4879.0,"y":-33.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_310.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4937.0,"y":-33.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_312.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":4889.0,"y":-23.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_313.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":4948.0,"y":-22.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_314.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":4922.0,"y":54.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"224:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":5048.0,"y":54.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"224:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":4937.0,"y":95.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"224:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":5054.0,"y":95.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"224:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":4945.0,"y":70.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_323.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":5073.0,"y":70.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_330.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:342","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":4878.0,"y":203.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"224:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":4985.0,"y":212.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"224:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":5062.0,"y":-23.999988555908203,"z":14.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"224:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":5062.0,"y":-23.999988555908203,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_345.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:346","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625298500061035,"width":12.62548828125,"x":5076.7294921875,"y":-9.270495414733887,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_346.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"218:87","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":5079.0,"y":-327.0,"z":15.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":5156.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":5122.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I218_87;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I218_87;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":5098.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I218_87;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I218_87;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":5079.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I218_87;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I218_87;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"218:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":4881.0,"y":-294.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/218_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"438:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":4866.0,"y":-244.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"438:117","overrideProperties":[{"UUID":"441:111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"441:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47808837890625,"width":9.92529296875,"x":4954.03759765625,"y":-126.19964599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/441_111.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"441:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"441:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.149429321289062,"width":24.97119140625,"x":5141.98828125,"y":-120.28349304199219,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/441_116.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"443:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 438","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":5132.0,"y":-127.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/443_117.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"443:118","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCar model: Honda Civic","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":4879.0,"y":-80.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},"type":"stringValue"},{"UUID":"443:119","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCar colour: Grey","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":4880.0,"y":-60.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"},"type":"stringValue"}],"children":[{"UUID":"218:285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":4866.0,"y":-244.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"441:110","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ant-design:star-outlined","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47808837890625,"width":9.92529296875,"x":4953.0,"y":-127.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/441_110.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"443:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 155","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":5132.0,"y":-127.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":5132.0,"y":-127.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/443_117.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"441:114","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"fluent:call-24-filled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":38.20293426513672,"width":38.203125,"x":5134.45703125,"y":-125.77142333984375,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"441:115","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.149429321289062,"width":24.97119140625,"x":5141.98828125,"y":-120.28349304199219,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/441_115.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"group"},{"UUID":"443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":4879.0,"y":-80.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},{"UUID":"443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":4880.0,"y":-60.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"218:286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":269.0,"x":4879.0,"y":-3.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"218:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":4903.0,"y":11.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"218:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":5034.0,"y":-3.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"218:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":5075.0,"y":9.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"438:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5 MINs","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":68.0,"x":5000.0,"y":-197.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5 MINs "},{"UUID":"441:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"GXM 507 AJ","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":84.0,"x":4947.0,"y":-113.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"GXM 507 AJ "},{"UUID":"438:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your rider will be at your location in","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":286.0,"x":4890.0,"y":-221.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your rider will be at your location in "},{"UUID":"438:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tunde Kareem","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":91.0,"x":4947.0,"y":-145.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Tunde Kareem"},{"UUID":"441:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5.0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":4970.0,"y":-128.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5.0"},{"UUID":"421:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 148","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":4890.0,"y":102.0,"z":27.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want someone to join your ride?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":4890.0,"y":102.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want someone to join your ride?"}],"type":"group"},{"UUID":"421:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 149","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":4890.0,"y":155.0,"z":28.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want to negotiate with driver?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":4890.0,"y":155.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want to negotiate with driver?"}],"type":"group"},{"UUID":"421:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":310.0,"x":4879.0,"y":93.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"421:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 48","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":311.0,"x":4878.0,"y":148.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"421:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 154","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":5099.0,"y":100.0,"z":31.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 151","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":100.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":100.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"421:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":5099.0,"y":114.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"421:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 153","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":5099.0,"y":155.0,"z":32.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 152","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":155.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:126","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":155.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"421:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":5099.0,"y":169.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"424:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":33.0,"x":4932.0,"y":219.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"432:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":31.0,"x":5021.0,"y":219.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Card"},{"UUID":"432:133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 435","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":4998.0,"y":220.0,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/432_133.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"432:136","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 436","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":4909.0,"y":220.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/432_136.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"432:134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 49","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":84.0,"x":5075.0,"y":212.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"432:135","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Confirm","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":50.0,"x":5092.0,"y":216.0,"z":38.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Confirm "},{"UUID":"438:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":64.0,"x":4879.0,"y":-151.0,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/438_112.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"228:355","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"payment method","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/228:355.png","type":"screen","designNode":{"UUID":"228:355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment method","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5654.0,"y":-344.0,"z":9.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":5493.0,"y":-777.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/308_180.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:358","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5949.0,"y":-36.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"228:359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5949.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_359.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":5963.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_360.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"228:362","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5679.0,"y":-33.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_362.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:363","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5679.0,"y":-294.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_363.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:364","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5737.0,"y":-33.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_364.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":5689.0,"y":-23.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_365.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":5748.0,"y":-22.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_366.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":5722.0,"y":54.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"228:370","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":5692.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_370.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":5848.0,"y":54.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"228:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":5737.0,"y":95.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"228:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":5854.0,"y":95.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"228:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":5745.0,"y":70.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_375.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:381","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":5753.23046875,"y":-200.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_381.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":5873.0,"y":70.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_382.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:388","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.22802734375,"x":5735.0,"y":-168.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_388.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:391","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":5679.0,"y":-189.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"228:392","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":5689.0,"y":-174.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_392.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:393","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":5715.0,"y":-177.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"228:395","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":5785.0,"y":212.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"228:400","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":5679.0,"y":-223.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"228:357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":5879.0,"y":-327.0,"z":21.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":5956.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":5922.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I228_357;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I228_357;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":5898.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I228_357;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I228_357;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":5879.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I228_357;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I228_357;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"228:402","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 145","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":5625.0,"y":-344.0,"z":22.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"228:403","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":5625.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"228:404","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":5675.0,"y":-272.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_404.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:405","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":5756.0,"y":-258.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"}],"type":"group"},{"UUID":"229:425","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":177.0,"x":5680.0,"y":-159.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Payment Method"},{"UUID":"229:427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":5680.0,"y":-113.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"229:429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Bank Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":5680.0,"y":-82.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Bank Card"},{"UUID":"308:182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":5680.0,"y":176.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:183","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":5697.0,"y":188.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"308:184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":5698.0,"y":209.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"308:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":5853.0,"y":198.0,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":5680.0,"y":244.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"229:435","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/229:435.png","type":"screen","designNode":{"UUID":"229:435","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6052.0,"y":-344.0,"z":12.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"229:436","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":6277.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":6354.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":6320.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I229_436;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I229_436;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":6296.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I229_436;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I229_436;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":6277.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I229_436;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I229_436;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"229:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":6078.0,"y":-29.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"229:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":6078.0,"y":11.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"229:444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":6188.0,"y":252.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"229:626","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":6077.0,"y":-294.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/229_626.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"229:635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":6157.0,"y":-308.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"229:643","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6078.0,"y":-2.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:644","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":6078.0,"y":63.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":6078.0,"y":128.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":6277.0,"y":128.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":6077.0,"y":175.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"229:648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":6201.0,"y":187.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"229:649","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":6364.0,"y":32.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/229_649.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"229:652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":6078.0,"y":-50.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"229:653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":6076.0,"y":8.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"229:654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":6076.0,"y":73.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"229:655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":6277.0,"y":74.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"461:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 158","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.25,"width":245.0,"x":6109.0,"y":-247.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/461_186.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"253:814","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/253:814.png","type":"screen","designNode":{"UUID":"253:814","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6452.0,"y":-344.0,"z":19.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":5956.0,"y":-414.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/308_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:816","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6747.0,"y":-36.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"253:817","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6747.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_817.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:818","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":6761.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_818.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"253:820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6477.0,"y":-33.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_820.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:821","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6477.0,"y":-294.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_821.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6535.0,"y":-33.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_822.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":6487.0,"y":-23.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_823.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:824","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":6546.0,"y":-22.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_824.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:827","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":6520.0,"y":54.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"253:828","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":6490.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_828.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":6646.0,"y":54.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"253:831","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":6535.0,"y":95.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"253:832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":6652.0,"y":95.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"253:833","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":6543.0,"y":70.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_833.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:839","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":6551.23046875,"y":-200.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_839.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:840","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":6671.0,"y":70.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_840.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:852","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":6476.0,"y":203.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"253:853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":6583.0,"y":212.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"253:854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":6660.0,"y":-23.999988555908203,"z":17.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"253:855","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":6660.0,"y":-23.999988555908203,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_855.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:856","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625298500061035,"width":12.62548828125,"x":6674.7294921875,"y":-9.270495414733887,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_856.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"253:860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":6677.0,"y":-327.0,"z":18.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":6754.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":6720.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I253_860;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I253_860;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":6696.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I253_860;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I253_860;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":6677.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I253_860;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I253_860;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"253:861","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":6479.0,"y":-294.0,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_861.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":571.0,"width":336.0,"x":6465.0,"y":-128.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"253:880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":125.0,"width":125.0,"x":6568.0,"y":-195.0,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_880.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":171.0,"x":6545.0,"y":-64.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":36.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"253:886","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":6477.0,"y":34.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"johndoe@gmail.com"},{"UUID":"253:887","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+2348123567890","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":6477.0,"y":95.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+2348123567890"},{"UUID":"253:888","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":6477.0,"y":217.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"FCT"},{"UUID":"253:889","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Johndeo334@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":204.0,"x":6477.0,"y":156.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Johndeo334@gmail.com"},{"UUID":"253:890","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":72.0,"x":6602.0,"y":-16.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"262:891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":65.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"262:892","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":126.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"262:893","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":188.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"262:894","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":249.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}]},"isVisible":true},{"UUID":"308:188","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"history","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/308:188.png","type":"screen","designNode":{"UUID":"308:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"history","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6852.0,"y":-344.0,"z":13.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":7077.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":7154.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":7120.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_189;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_189;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":7096.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_189;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_189;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":7077.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_189;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_189;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"308:386","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7139.0,"y":-220.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_386.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:387","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7139.0,"y":-144.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_387.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":6879.0,"y":-294.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_195.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":181.0,"x":6943.0,"y":-309.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"308:376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":6877.0,"y":-230.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"308:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":6877.0,"y":-154.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"308:378","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"JABI LAKE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":6910.0,"y":-228.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"JABI LAKE "},{"UUID":"308:379","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"MAITAMA","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":6911.0,"y":-150.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"MAITAMA "},{"UUID":"308:380","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 7:41 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":6911.0,"y":-209.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 7:41 AM "},{"UUID":"308:381","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 8:58 PM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":106.0,"x":6911.0,"y":-131.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 8:58 PM "},{"UUID":"308:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"DELIVERY COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":123.0,"x":6911.0,"y":-194.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"DELIVERY COMPLETED "},{"UUID":"308:383","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":97.0,"x":6911.0,"y":-116.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED "},{"UUID":"308:388","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7144.0,"y":-131.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_388.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:390","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7145.0,"y":-208.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_390.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"308:391","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Support","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/308:391.png","type":"screen","designNode":{"UUID":"308:391","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":7251.0,"y":-344.0,"z":14.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:392","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":7476.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":7553.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":7519.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_392;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_392;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":7495.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_392;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_392;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":7476.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_392;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_392;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"308:395","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":7278.0,"y":-294.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_395.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:396","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":197.0,"x":7334.0,"y":-309.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi Support"},{"UUID":"308:413","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":7235.0,"y":-232.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:414","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 26","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7237.0,"y":-181.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 27","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7237.0,"y":-124.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 31","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7237.0,"y":-16.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 33","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":7231.0,"y":92.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:418","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 30","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":7231.0,"y":-73.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:419","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7237.0,"y":35.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 34","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":7238.0,"y":143.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Reach us: +2348136192991","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":189.0,"x":7276.0,"y":-217.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Reach us: +2348136192991"},{"UUID":"308:422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social Media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":186.0,"x":7276.0,"y":-167.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social Media"},{"UUID":"308:423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":7276.0,"y":-111.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"308:424","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":7276.0,"y":-3.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"308:425","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":100.0,"x":7276.0,"y":105.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"308:426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":83.0,"x":7276.0,"y":-61.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"308:427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":7276.0,"y":46.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"308:428","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":229.0,"x":7276.0,"y":156.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"}]},"isVisible":true},{"UUID":"308:429","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"About","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/308:429.png","type":"screen","designNode":{"UUID":"308:429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":7652.0,"y":-344.0,"z":15.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:430","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":7877.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":7954.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":7920.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_430;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_430;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":7896.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_430;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_430;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":7877.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_430;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_430;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"308:431","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":7679.0,"y":-294.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_431.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:432","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":93.0,"x":7786.0,"y":-309.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"308:455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 35","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":7637.0,"y":-232.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:456","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 36","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7639.0,"y":-181.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 37","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7639.0,"y":-124.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:458","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 38","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7639.0,"y":-16.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:459","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 39","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":7633.0,"y":88.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 40","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":7633.0,"y":-73.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 41","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7639.0,"y":35.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 42","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":7640.0,"y":142.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 43","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":7640.0,"y":193.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:464","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate Us Now","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":96.0,"x":7678.0,"y":-218.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate Us Now"},{"UUID":"308:465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Version 0.86","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":86.0,"x":7789.0,"y":-270.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Version 0.86"},{"UUID":"308:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":186.0,"x":7678.0,"y":-167.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social media"},{"UUID":"308:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":140.0,"x":7678.0,"y":-111.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"308:468","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":43.0,"x":7678.0,"y":-2.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"308:469","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":100.0,"x":7677.0,"y":101.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"308:470","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":7678.0,"y":-63.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"308:471","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":116.0,"x":7676.0,"y":49.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"308:472","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":229.0,"x":7677.0,"y":153.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"},{"UUID":"308:473","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Legal","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":42.0,"x":7676.0,"y":205.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Legal"}]},"isVisible":true},{"UUID":"443:121","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"travel screen","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/443:121.png","type":"screen","designNode":{"UUID":"443:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"travel screen","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5254.0,"y":-344.0,"z":18.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"443:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1681.379638671875,"width":1697.71142578125,"x":4647.2890625,"y":-820.6085205078125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/443_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"443:155","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":5479.0,"y":-327.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":5556.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":5522.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I443_155;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I443_155;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":5498.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I443_155;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I443_155;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":5479.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I443_155;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I443_155;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"447:125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":253.50001525878906,"width":82.0,"x":5326.5,"y":-190.5,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/447_125.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"447:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.22802734375,"x":5382.0,"y":-219.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/447_118.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"447:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 155","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":5373.0,"y":47.99999237060547,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"447:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":5373.0,"y":47.99999237060547,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/447_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"447:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.047473907470703,"width":9.04736328125,"x":5383.55517578125,"y":58.55551528930664,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/447_123.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"446:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 46","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":240.0,"x":5314.0,"y":136.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"447:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1hrs 15 mins","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":122.0,"x":5373.0,"y":145.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"1hrs 15 mins "},{"UUID":"447:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Approximated Travel Time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":158.0,"x":5355.0,"y":115.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Approximated Travel Time "}]},"isVisible":true},{"UUID":"450:129","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"feedback","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/450:129.png","type":"screen","designNode":{"UUID":"450:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"feedback","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":8053.0,"y":-344.0,"z":16.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"459:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2890625,"x":7890.0,"y":-863.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/459_131.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"450:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 51","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":8053.0,"y":-344.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"450:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":168.0,"x":8149.0,"y":-113.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED"},{"UUID":"450:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"How is your trip?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":150.0,"x":8163.0,"y":-32.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"How is your trip?"},{"UUID":"450:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":100.0,"width":100.0,"x":8183.0,"y":-220.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/450_160.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"452:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 157","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":162.0,"x":8155.0,"y":3.0,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"452:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 156","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":8155.0,"y":3.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/452_116.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"450:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":8155.0,"y":3.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/450_167.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"454:124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 52","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":115.0,"width":310.0,"x":8078.0,"y":59.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"459:132","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Additional Information","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":8088.0,"y":68.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Additional Information"},{"UUID":"459:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 53","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":110.0,"x":8278.0,"y":215.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"459:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"SUBMIT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":60.0,"x":8294.0,"y":219.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"SUBMIT"},{"UUID":"459:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0869140625,"x":8366.0,"y":223.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/459_128.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"454:121","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logo padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/454:121.png","type":"screen","designNode":{"UUID":"454:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"logo padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":55.0,"y":-344.0,"z":20.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"454:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-337.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/454_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"454:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"WhatsApp_Image_2021-07-23_at_8.10 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":91.0,"width":200.0,"x":135.0,"y":-86.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/454_123.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"532:490","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx/532:490.png","type":"screen","designNode":{"UUID":"532:490","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2454.0,"y":-344.0,"z":21.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"532:491","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2679.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2756.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2722.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_491;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_491;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2698.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_491;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_491;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2679.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_491;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_491;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"532:492","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Set up profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":201.0,"x":2533.0,"y":-285.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Set up profile"},{"UUID":"532:493","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":277.0,"x":2495.0,"y":-216.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":277.0,"x":2495.0,"y":-216.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_494.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:495","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":2509.0,"y":-213.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"532:496","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2713.0,"y":-209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:497","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-161.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:498","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-161.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_498.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:499","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":45.0,"x":2509.0,"y":-154.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Email"},{"UUID":"532:500","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":-150.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:501","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-105.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:502","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-105.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_502.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:503","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":119.0,"x":2509.0,"y":-98.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone number"},{"UUID":"532:504","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":-94.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:505","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-49.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:506","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-49.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_506.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:507","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":2509.0,"y":-42.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Address"},{"UUID":"532:508","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":-38.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:509","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":7.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:510","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":7.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_510.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:511","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":2509.0,"y":14.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"State"},{"UUID":"532:512","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":18.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:513","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":2520.0,"y":179.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":278.0,"x":2495.0,"y":112.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:515","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":2603.0,"y":120.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:516","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2683.0,"y":180.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_516.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:519","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2643.0,"y":180.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2643.0,"y":180.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:521","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":2643.0,"y":183.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_521.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:527","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2723.0,"y":180.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:528","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2723.0,"y":180.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_528.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:530","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":2724.0,"y":183.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_530.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:532","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":2498.0,"y":56.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:533","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":2498.0,"y":56.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:534","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":2502.0,"y":60.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_534.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:536","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":2520.0,"y":55.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true}],"type":"page"}],"miscPages":[],"sharedStyles":[],"type":"project","azure_container_uri":"https://pbnestcore.blob.core.windows.net/y4bengetgufqvz2ccfh2fx"} \ No newline at end of file diff --git a/lib/assets/images/108_217.png b/lib/assets/images/108_217.png new file mode 100644 index 0000000..8fc7da1 Binary files /dev/null and b/lib/assets/images/108_217.png differ diff --git a/lib/assets/images/10_81.png b/lib/assets/images/10_81.png new file mode 100644 index 0000000..8865698 Binary files /dev/null and b/lib/assets/images/10_81.png differ diff --git a/lib/assets/images/116_9.png b/lib/assets/images/116_9.png new file mode 100644 index 0000000..002c9f0 Binary files /dev/null and b/lib/assets/images/116_9.png differ diff --git a/lib/assets/images/117_14.png b/lib/assets/images/117_14.png new file mode 100644 index 0000000..7b5ca11 Binary files /dev/null and b/lib/assets/images/117_14.png differ diff --git a/lib/assets/images/117_48.png b/lib/assets/images/117_48.png new file mode 100644 index 0000000..32a44d6 Binary files /dev/null and b/lib/assets/images/117_48.png differ diff --git a/lib/assets/images/117_51.png b/lib/assets/images/117_51.png new file mode 100644 index 0000000..18aafd0 Binary files /dev/null and b/lib/assets/images/117_51.png differ diff --git a/lib/assets/images/117_52.png b/lib/assets/images/117_52.png new file mode 100644 index 0000000..18aafd0 Binary files /dev/null and b/lib/assets/images/117_52.png differ diff --git a/lib/assets/images/117_53.png b/lib/assets/images/117_53.png new file mode 100644 index 0000000..18aafd0 Binary files /dev/null and b/lib/assets/images/117_53.png differ diff --git a/lib/assets/images/117_54.png b/lib/assets/images/117_54.png new file mode 100644 index 0000000..18aafd0 Binary files /dev/null and b/lib/assets/images/117_54.png differ diff --git a/lib/assets/images/118_16.png b/lib/assets/images/118_16.png new file mode 100644 index 0000000..65a080d Binary files /dev/null and b/lib/assets/images/118_16.png differ diff --git a/lib/assets/images/118_20.png b/lib/assets/images/118_20.png new file mode 100644 index 0000000..4331f74 Binary files /dev/null and b/lib/assets/images/118_20.png differ diff --git a/lib/assets/images/118_33.png b/lib/assets/images/118_33.png new file mode 100644 index 0000000..6a6a2f2 Binary files /dev/null and b/lib/assets/images/118_33.png differ diff --git a/lib/assets/images/118_34.png b/lib/assets/images/118_34.png new file mode 100644 index 0000000..9789869 Binary files /dev/null and b/lib/assets/images/118_34.png differ diff --git a/lib/assets/images/118_40.png b/lib/assets/images/118_40.png new file mode 100644 index 0000000..c9d3300 Binary files /dev/null and b/lib/assets/images/118_40.png differ diff --git a/lib/assets/images/118_41.png b/lib/assets/images/118_41.png new file mode 100644 index 0000000..2185101 Binary files /dev/null and b/lib/assets/images/118_41.png differ diff --git a/lib/assets/images/119_13.png b/lib/assets/images/119_13.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/119_13.png differ diff --git a/lib/assets/images/119_14.png b/lib/assets/images/119_14.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/119_14.png differ diff --git a/lib/assets/images/119_15.png b/lib/assets/images/119_15.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/119_15.png differ diff --git a/lib/assets/images/119_16.png b/lib/assets/images/119_16.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/119_16.png differ diff --git a/lib/assets/images/11_228.png b/lib/assets/images/11_228.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/11_228.png differ diff --git a/lib/assets/images/11_237.png b/lib/assets/images/11_237.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/11_237.png differ diff --git a/lib/assets/images/11_239.png b/lib/assets/images/11_239.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/11_239.png differ diff --git a/lib/assets/images/11_243.png b/lib/assets/images/11_243.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/11_243.png differ diff --git a/lib/assets/images/11_249.png b/lib/assets/images/11_249.png new file mode 100644 index 0000000..bc0ba93 Binary files /dev/null and b/lib/assets/images/11_249.png differ diff --git a/lib/assets/images/11_252.png b/lib/assets/images/11_252.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/11_252.png differ diff --git a/lib/assets/images/11_260.png b/lib/assets/images/11_260.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/11_260.png differ diff --git a/lib/assets/images/11_265.png b/lib/assets/images/11_265.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/11_265.png differ diff --git a/lib/assets/images/11_272.png b/lib/assets/images/11_272.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/11_272.png differ diff --git a/lib/assets/images/11_274.png b/lib/assets/images/11_274.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/11_274.png differ diff --git a/lib/assets/images/126_1109.png b/lib/assets/images/126_1109.png new file mode 100644 index 0000000..6b5702e Binary files /dev/null and b/lib/assets/images/126_1109.png differ diff --git a/lib/assets/images/126_1111.png b/lib/assets/images/126_1111.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_1111.png differ diff --git a/lib/assets/images/126_1121.png b/lib/assets/images/126_1121.png new file mode 100644 index 0000000..6f2835a Binary files /dev/null and b/lib/assets/images/126_1121.png differ diff --git a/lib/assets/images/126_1123.png b/lib/assets/images/126_1123.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_1123.png differ diff --git a/lib/assets/images/126_1133.png b/lib/assets/images/126_1133.png new file mode 100644 index 0000000..6f2835a Binary files /dev/null and b/lib/assets/images/126_1133.png differ diff --git a/lib/assets/images/126_1135.png b/lib/assets/images/126_1135.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_1135.png differ diff --git a/lib/assets/images/126_1145.png b/lib/assets/images/126_1145.png new file mode 100644 index 0000000..6f2835a Binary files /dev/null and b/lib/assets/images/126_1145.png differ diff --git a/lib/assets/images/126_1147.png b/lib/assets/images/126_1147.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_1147.png differ diff --git a/lib/assets/images/126_1160.png b/lib/assets/images/126_1160.png new file mode 100644 index 0000000..79ed603 Binary files /dev/null and b/lib/assets/images/126_1160.png differ diff --git a/lib/assets/images/126_1162.png b/lib/assets/images/126_1162.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1162.png differ diff --git a/lib/assets/images/126_1172.png b/lib/assets/images/126_1172.png new file mode 100644 index 0000000..80673d5 Binary files /dev/null and b/lib/assets/images/126_1172.png differ diff --git a/lib/assets/images/126_1174.png b/lib/assets/images/126_1174.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1174.png differ diff --git a/lib/assets/images/126_1184.png b/lib/assets/images/126_1184.png new file mode 100644 index 0000000..9a5d272 Binary files /dev/null and b/lib/assets/images/126_1184.png differ diff --git a/lib/assets/images/126_1186.png b/lib/assets/images/126_1186.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1186.png differ diff --git a/lib/assets/images/126_1196.png b/lib/assets/images/126_1196.png new file mode 100644 index 0000000..4f83651 Binary files /dev/null and b/lib/assets/images/126_1196.png differ diff --git a/lib/assets/images/126_1198.png b/lib/assets/images/126_1198.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1198.png differ diff --git a/lib/assets/images/126_1208.png b/lib/assets/images/126_1208.png new file mode 100644 index 0000000..79ed603 Binary files /dev/null and b/lib/assets/images/126_1208.png differ diff --git a/lib/assets/images/126_1210.png b/lib/assets/images/126_1210.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1210.png differ diff --git a/lib/assets/images/126_1220.png b/lib/assets/images/126_1220.png new file mode 100644 index 0000000..6bf1bc9 Binary files /dev/null and b/lib/assets/images/126_1220.png differ diff --git a/lib/assets/images/126_1222.png b/lib/assets/images/126_1222.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1222.png differ diff --git a/lib/assets/images/126_1232.png b/lib/assets/images/126_1232.png new file mode 100644 index 0000000..6bf1bc9 Binary files /dev/null and b/lib/assets/images/126_1232.png differ diff --git a/lib/assets/images/126_1234.png b/lib/assets/images/126_1234.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1234.png differ diff --git a/lib/assets/images/126_1244.png b/lib/assets/images/126_1244.png new file mode 100644 index 0000000..6bf1bc9 Binary files /dev/null and b/lib/assets/images/126_1244.png differ diff --git a/lib/assets/images/126_1246.png b/lib/assets/images/126_1246.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1246.png differ diff --git a/lib/assets/images/126_1260.png b/lib/assets/images/126_1260.png new file mode 100644 index 0000000..3f8fb8b Binary files /dev/null and b/lib/assets/images/126_1260.png differ diff --git a/lib/assets/images/126_1262.png b/lib/assets/images/126_1262.png new file mode 100644 index 0000000..f579f1a Binary files /dev/null and b/lib/assets/images/126_1262.png differ diff --git a/lib/assets/images/126_1276.png b/lib/assets/images/126_1276.png new file mode 100644 index 0000000..3d02dfd Binary files /dev/null and b/lib/assets/images/126_1276.png differ diff --git a/lib/assets/images/126_1278.png b/lib/assets/images/126_1278.png new file mode 100644 index 0000000..f579f1a Binary files /dev/null and b/lib/assets/images/126_1278.png differ diff --git a/lib/assets/images/126_1375.png b/lib/assets/images/126_1375.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1375.png differ diff --git a/lib/assets/images/126_1377.png b/lib/assets/images/126_1377.png new file mode 100644 index 0000000..1c8eaa9 Binary files /dev/null and b/lib/assets/images/126_1377.png differ diff --git a/lib/assets/images/126_1380.png b/lib/assets/images/126_1380.png new file mode 100644 index 0000000..8f6f71d Binary files /dev/null and b/lib/assets/images/126_1380.png differ diff --git a/lib/assets/images/126_1382.png b/lib/assets/images/126_1382.png new file mode 100644 index 0000000..b2cf00b Binary files /dev/null and b/lib/assets/images/126_1382.png differ diff --git a/lib/assets/images/126_1386.png b/lib/assets/images/126_1386.png new file mode 100644 index 0000000..164db74 Binary files /dev/null and b/lib/assets/images/126_1386.png differ diff --git a/lib/assets/images/126_1388.png b/lib/assets/images/126_1388.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1388.png differ diff --git a/lib/assets/images/126_1395.png b/lib/assets/images/126_1395.png new file mode 100644 index 0000000..f8c7df8 Binary files /dev/null and b/lib/assets/images/126_1395.png differ diff --git a/lib/assets/images/126_1398.png b/lib/assets/images/126_1398.png new file mode 100644 index 0000000..fc9c5e4 Binary files /dev/null and b/lib/assets/images/126_1398.png differ diff --git a/lib/assets/images/126_1442.png b/lib/assets/images/126_1442.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1442.png differ diff --git a/lib/assets/images/126_1444.png b/lib/assets/images/126_1444.png new file mode 100644 index 0000000..1c8eaa9 Binary files /dev/null and b/lib/assets/images/126_1444.png differ diff --git a/lib/assets/images/126_1447.png b/lib/assets/images/126_1447.png new file mode 100644 index 0000000..e3f95a3 Binary files /dev/null and b/lib/assets/images/126_1447.png differ diff --git a/lib/assets/images/126_1449.png b/lib/assets/images/126_1449.png new file mode 100644 index 0000000..a01ddbd Binary files /dev/null and b/lib/assets/images/126_1449.png differ diff --git a/lib/assets/images/126_1453.png b/lib/assets/images/126_1453.png new file mode 100644 index 0000000..164db74 Binary files /dev/null and b/lib/assets/images/126_1453.png differ diff --git a/lib/assets/images/126_1455.png b/lib/assets/images/126_1455.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1455.png differ diff --git a/lib/assets/images/126_1462.png b/lib/assets/images/126_1462.png new file mode 100644 index 0000000..f8c7df8 Binary files /dev/null and b/lib/assets/images/126_1462.png differ diff --git a/lib/assets/images/126_1465.png b/lib/assets/images/126_1465.png new file mode 100644 index 0000000..fc9c5e4 Binary files /dev/null and b/lib/assets/images/126_1465.png differ diff --git a/lib/assets/images/126_1509.png b/lib/assets/images/126_1509.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1509.png differ diff --git a/lib/assets/images/126_1511.png b/lib/assets/images/126_1511.png new file mode 100644 index 0000000..1c8eaa9 Binary files /dev/null and b/lib/assets/images/126_1511.png differ diff --git a/lib/assets/images/126_1514.png b/lib/assets/images/126_1514.png new file mode 100644 index 0000000..e3f95a3 Binary files /dev/null and b/lib/assets/images/126_1514.png differ diff --git a/lib/assets/images/126_1516.png b/lib/assets/images/126_1516.png new file mode 100644 index 0000000..a01ddbd Binary files /dev/null and b/lib/assets/images/126_1516.png differ diff --git a/lib/assets/images/126_1520.png b/lib/assets/images/126_1520.png new file mode 100644 index 0000000..164db74 Binary files /dev/null and b/lib/assets/images/126_1520.png differ diff --git a/lib/assets/images/126_1522.png b/lib/assets/images/126_1522.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1522.png differ diff --git a/lib/assets/images/126_1529.png b/lib/assets/images/126_1529.png new file mode 100644 index 0000000..f8c7df8 Binary files /dev/null and b/lib/assets/images/126_1529.png differ diff --git a/lib/assets/images/126_1532.png b/lib/assets/images/126_1532.png new file mode 100644 index 0000000..fc9c5e4 Binary files /dev/null and b/lib/assets/images/126_1532.png differ diff --git a/lib/assets/images/126_1576.png b/lib/assets/images/126_1576.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1576.png differ diff --git a/lib/assets/images/126_1578.png b/lib/assets/images/126_1578.png new file mode 100644 index 0000000..1c8eaa9 Binary files /dev/null and b/lib/assets/images/126_1578.png differ diff --git a/lib/assets/images/126_1581.png b/lib/assets/images/126_1581.png new file mode 100644 index 0000000..e3f95a3 Binary files /dev/null and b/lib/assets/images/126_1581.png differ diff --git a/lib/assets/images/126_1583.png b/lib/assets/images/126_1583.png new file mode 100644 index 0000000..a01ddbd Binary files /dev/null and b/lib/assets/images/126_1583.png differ diff --git a/lib/assets/images/126_1587.png b/lib/assets/images/126_1587.png new file mode 100644 index 0000000..164db74 Binary files /dev/null and b/lib/assets/images/126_1587.png differ diff --git a/lib/assets/images/126_1589.png b/lib/assets/images/126_1589.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1589.png differ diff --git a/lib/assets/images/126_1596.png b/lib/assets/images/126_1596.png new file mode 100644 index 0000000..f8c7df8 Binary files /dev/null and b/lib/assets/images/126_1596.png differ diff --git a/lib/assets/images/126_1599.png b/lib/assets/images/126_1599.png new file mode 100644 index 0000000..fc9c5e4 Binary files /dev/null and b/lib/assets/images/126_1599.png differ diff --git a/lib/assets/images/126_1643.png b/lib/assets/images/126_1643.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1643.png differ diff --git a/lib/assets/images/126_1645.png b/lib/assets/images/126_1645.png new file mode 100644 index 0000000..1c8eaa9 Binary files /dev/null and b/lib/assets/images/126_1645.png differ diff --git a/lib/assets/images/126_1648.png b/lib/assets/images/126_1648.png new file mode 100644 index 0000000..e3f95a3 Binary files /dev/null and b/lib/assets/images/126_1648.png differ diff --git a/lib/assets/images/126_1650.png b/lib/assets/images/126_1650.png new file mode 100644 index 0000000..a01ddbd Binary files /dev/null and b/lib/assets/images/126_1650.png differ diff --git a/lib/assets/images/126_1654.png b/lib/assets/images/126_1654.png new file mode 100644 index 0000000..164db74 Binary files /dev/null and b/lib/assets/images/126_1654.png differ diff --git a/lib/assets/images/126_1656.png b/lib/assets/images/126_1656.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1656.png differ diff --git a/lib/assets/images/126_1663.png b/lib/assets/images/126_1663.png new file mode 100644 index 0000000..f8c7df8 Binary files /dev/null and b/lib/assets/images/126_1663.png differ diff --git a/lib/assets/images/126_1666.png b/lib/assets/images/126_1666.png new file mode 100644 index 0000000..fc9c5e4 Binary files /dev/null and b/lib/assets/images/126_1666.png differ diff --git a/lib/assets/images/126_1710.png b/lib/assets/images/126_1710.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1710.png differ diff --git a/lib/assets/images/126_1712.png b/lib/assets/images/126_1712.png new file mode 100644 index 0000000..1c8eaa9 Binary files /dev/null and b/lib/assets/images/126_1712.png differ diff --git a/lib/assets/images/126_1715.png b/lib/assets/images/126_1715.png new file mode 100644 index 0000000..e3f95a3 Binary files /dev/null and b/lib/assets/images/126_1715.png differ diff --git a/lib/assets/images/126_1717.png b/lib/assets/images/126_1717.png new file mode 100644 index 0000000..a01ddbd Binary files /dev/null and b/lib/assets/images/126_1717.png differ diff --git a/lib/assets/images/126_1721.png b/lib/assets/images/126_1721.png new file mode 100644 index 0000000..164db74 Binary files /dev/null and b/lib/assets/images/126_1721.png differ diff --git a/lib/assets/images/126_1723.png b/lib/assets/images/126_1723.png new file mode 100644 index 0000000..47d1572 Binary files /dev/null and b/lib/assets/images/126_1723.png differ diff --git a/lib/assets/images/126_1730.png b/lib/assets/images/126_1730.png new file mode 100644 index 0000000..f8c7df8 Binary files /dev/null and b/lib/assets/images/126_1730.png differ diff --git a/lib/assets/images/126_1733.png b/lib/assets/images/126_1733.png new file mode 100644 index 0000000..fc9c5e4 Binary files /dev/null and b/lib/assets/images/126_1733.png differ diff --git a/lib/assets/images/126_1928.png b/lib/assets/images/126_1928.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_1928.png differ diff --git a/lib/assets/images/126_1932.png b/lib/assets/images/126_1932.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_1932.png differ diff --git a/lib/assets/images/126_1957.png b/lib/assets/images/126_1957.png new file mode 100644 index 0000000..1a0dfc5 Binary files /dev/null and b/lib/assets/images/126_1957.png differ diff --git a/lib/assets/images/126_1961.png b/lib/assets/images/126_1961.png new file mode 100644 index 0000000..74bc94f Binary files /dev/null and b/lib/assets/images/126_1961.png differ diff --git a/lib/assets/images/126_1986.png b/lib/assets/images/126_1986.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_1986.png differ diff --git a/lib/assets/images/126_1990.png b/lib/assets/images/126_1990.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_1990.png differ diff --git a/lib/assets/images/126_2015.png b/lib/assets/images/126_2015.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_2015.png differ diff --git a/lib/assets/images/126_2019.png b/lib/assets/images/126_2019.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2019.png differ diff --git a/lib/assets/images/126_2044.png b/lib/assets/images/126_2044.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_2044.png differ diff --git a/lib/assets/images/126_2048.png b/lib/assets/images/126_2048.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2048.png differ diff --git a/lib/assets/images/126_2073.png b/lib/assets/images/126_2073.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_2073.png differ diff --git a/lib/assets/images/126_2077.png b/lib/assets/images/126_2077.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2077.png differ diff --git a/lib/assets/images/126_2102.png b/lib/assets/images/126_2102.png new file mode 100644 index 0000000..1a0dfc5 Binary files /dev/null and b/lib/assets/images/126_2102.png differ diff --git a/lib/assets/images/126_2106.png b/lib/assets/images/126_2106.png new file mode 100644 index 0000000..74bc94f Binary files /dev/null and b/lib/assets/images/126_2106.png differ diff --git a/lib/assets/images/126_2131.png b/lib/assets/images/126_2131.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_2131.png differ diff --git a/lib/assets/images/126_2135.png b/lib/assets/images/126_2135.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2135.png differ diff --git a/lib/assets/images/126_2160.png b/lib/assets/images/126_2160.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_2160.png differ diff --git a/lib/assets/images/126_2164.png b/lib/assets/images/126_2164.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2164.png differ diff --git a/lib/assets/images/126_2189.png b/lib/assets/images/126_2189.png new file mode 100644 index 0000000..af5a11f Binary files /dev/null and b/lib/assets/images/126_2189.png differ diff --git a/lib/assets/images/126_2193.png b/lib/assets/images/126_2193.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2193.png differ diff --git a/lib/assets/images/126_2656.png b/lib/assets/images/126_2656.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2656.png differ diff --git a/lib/assets/images/126_2660.png b/lib/assets/images/126_2660.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2660.png differ diff --git a/lib/assets/images/126_268.png b/lib/assets/images/126_268.png new file mode 100644 index 0000000..21f94d2 Binary files /dev/null and b/lib/assets/images/126_268.png differ diff --git a/lib/assets/images/126_2685.png b/lib/assets/images/126_2685.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2685.png differ diff --git a/lib/assets/images/126_2689.png b/lib/assets/images/126_2689.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2689.png differ diff --git a/lib/assets/images/126_2714.png b/lib/assets/images/126_2714.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2714.png differ diff --git a/lib/assets/images/126_2718.png b/lib/assets/images/126_2718.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2718.png differ diff --git a/lib/assets/images/126_2743.png b/lib/assets/images/126_2743.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2743.png differ diff --git a/lib/assets/images/126_2747.png b/lib/assets/images/126_2747.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2747.png differ diff --git a/lib/assets/images/126_2772.png b/lib/assets/images/126_2772.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2772.png differ diff --git a/lib/assets/images/126_2776.png b/lib/assets/images/126_2776.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2776.png differ diff --git a/lib/assets/images/126_2801.png b/lib/assets/images/126_2801.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2801.png differ diff --git a/lib/assets/images/126_2805.png b/lib/assets/images/126_2805.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2805.png differ diff --git a/lib/assets/images/126_2832.png b/lib/assets/images/126_2832.png new file mode 100644 index 0000000..6bced8a Binary files /dev/null and b/lib/assets/images/126_2832.png differ diff --git a/lib/assets/images/126_2837.png b/lib/assets/images/126_2837.png new file mode 100644 index 0000000..61f8a9f Binary files /dev/null and b/lib/assets/images/126_2837.png differ diff --git a/lib/assets/images/126_2862.png b/lib/assets/images/126_2862.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2862.png differ diff --git a/lib/assets/images/126_2866.png b/lib/assets/images/126_2866.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2866.png differ diff --git a/lib/assets/images/126_287.png b/lib/assets/images/126_287.png new file mode 100644 index 0000000..13bb695 Binary files /dev/null and b/lib/assets/images/126_287.png differ diff --git a/lib/assets/images/126_2891.png b/lib/assets/images/126_2891.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2891.png differ diff --git a/lib/assets/images/126_2895.png b/lib/assets/images/126_2895.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2895.png differ diff --git a/lib/assets/images/126_2920.png b/lib/assets/images/126_2920.png new file mode 100644 index 0000000..0cbf8ed Binary files /dev/null and b/lib/assets/images/126_2920.png differ diff --git a/lib/assets/images/126_2924.png b/lib/assets/images/126_2924.png new file mode 100644 index 0000000..f49d58a Binary files /dev/null and b/lib/assets/images/126_2924.png differ diff --git a/lib/assets/images/126_318.png b/lib/assets/images/126_318.png new file mode 100644 index 0000000..122b35b Binary files /dev/null and b/lib/assets/images/126_318.png differ diff --git a/lib/assets/images/126_347.png b/lib/assets/images/126_347.png new file mode 100644 index 0000000..e3d529b Binary files /dev/null and b/lib/assets/images/126_347.png differ diff --git a/lib/assets/images/12_2.png b/lib/assets/images/12_2.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/12_2.png differ diff --git a/lib/assets/images/133_118.png b/lib/assets/images/133_118.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/133_118.png differ diff --git a/lib/assets/images/133_26.png b/lib/assets/images/133_26.png new file mode 100644 index 0000000..6bd0026 Binary files /dev/null and b/lib/assets/images/133_26.png differ diff --git a/lib/assets/images/137_27.png b/lib/assets/images/137_27.png new file mode 100644 index 0000000..ef03373 Binary files /dev/null and b/lib/assets/images/137_27.png differ diff --git a/lib/assets/images/137_34.png b/lib/assets/images/137_34.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/137_34.png differ diff --git a/lib/assets/images/13_2.png b/lib/assets/images/13_2.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/13_2.png differ diff --git a/lib/assets/images/13_3.png b/lib/assets/images/13_3.png new file mode 100644 index 0000000..94a953c Binary files /dev/null and b/lib/assets/images/13_3.png differ diff --git a/lib/assets/images/144_32.png b/lib/assets/images/144_32.png new file mode 100644 index 0000000..dbc6d16 Binary files /dev/null and b/lib/assets/images/144_32.png differ diff --git a/lib/assets/images/147_74.png b/lib/assets/images/147_74.png new file mode 100644 index 0000000..d312089 Binary files /dev/null and b/lib/assets/images/147_74.png differ diff --git a/lib/assets/images/149_222.png b/lib/assets/images/149_222.png new file mode 100644 index 0000000..aab72a0 Binary files /dev/null and b/lib/assets/images/149_222.png differ diff --git a/lib/assets/images/149_223.png b/lib/assets/images/149_223.png new file mode 100644 index 0000000..04cc712 Binary files /dev/null and b/lib/assets/images/149_223.png differ diff --git a/lib/assets/images/149_224.png b/lib/assets/images/149_224.png new file mode 100644 index 0000000..313c64c Binary files /dev/null and b/lib/assets/images/149_224.png differ diff --git a/lib/assets/images/149_225.png b/lib/assets/images/149_225.png new file mode 100644 index 0000000..7e877c4 Binary files /dev/null and b/lib/assets/images/149_225.png differ diff --git a/lib/assets/images/149_226.png b/lib/assets/images/149_226.png new file mode 100644 index 0000000..c6f9fe0 Binary files /dev/null and b/lib/assets/images/149_226.png differ diff --git a/lib/assets/images/149_227.png b/lib/assets/images/149_227.png new file mode 100644 index 0000000..b10d66b Binary files /dev/null and b/lib/assets/images/149_227.png differ diff --git a/lib/assets/images/149_228.png b/lib/assets/images/149_228.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_228.png differ diff --git a/lib/assets/images/149_229.png b/lib/assets/images/149_229.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_229.png differ diff --git a/lib/assets/images/149_230.png b/lib/assets/images/149_230.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_230.png differ diff --git a/lib/assets/images/149_231.png b/lib/assets/images/149_231.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_231.png differ diff --git a/lib/assets/images/149_232.png b/lib/assets/images/149_232.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_232.png differ diff --git a/lib/assets/images/149_233.png b/lib/assets/images/149_233.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_233.png differ diff --git a/lib/assets/images/149_234.png b/lib/assets/images/149_234.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_234.png differ diff --git a/lib/assets/images/149_235.png b/lib/assets/images/149_235.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_235.png differ diff --git a/lib/assets/images/149_236.png b/lib/assets/images/149_236.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_236.png differ diff --git a/lib/assets/images/149_237.png b/lib/assets/images/149_237.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_237.png differ diff --git a/lib/assets/images/149_238.png b/lib/assets/images/149_238.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_238.png differ diff --git a/lib/assets/images/149_239.png b/lib/assets/images/149_239.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_239.png differ diff --git a/lib/assets/images/149_240.png b/lib/assets/images/149_240.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_240.png differ diff --git a/lib/assets/images/149_241.png b/lib/assets/images/149_241.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_241.png differ diff --git a/lib/assets/images/149_242.png b/lib/assets/images/149_242.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_242.png differ diff --git a/lib/assets/images/149_243.png b/lib/assets/images/149_243.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_243.png differ diff --git a/lib/assets/images/149_244.png b/lib/assets/images/149_244.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_244.png differ diff --git a/lib/assets/images/149_245.png b/lib/assets/images/149_245.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_245.png differ diff --git a/lib/assets/images/149_246.png b/lib/assets/images/149_246.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_246.png differ diff --git a/lib/assets/images/149_247.png b/lib/assets/images/149_247.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_247.png differ diff --git a/lib/assets/images/149_248.png b/lib/assets/images/149_248.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_248.png differ diff --git a/lib/assets/images/149_249.png b/lib/assets/images/149_249.png new file mode 100644 index 0000000..8928786 Binary files /dev/null and b/lib/assets/images/149_249.png differ diff --git a/lib/assets/images/149_250.png b/lib/assets/images/149_250.png new file mode 100644 index 0000000..48f7626 Binary files /dev/null and b/lib/assets/images/149_250.png differ diff --git a/lib/assets/images/149_251.png b/lib/assets/images/149_251.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_251.png differ diff --git a/lib/assets/images/149_252.png b/lib/assets/images/149_252.png new file mode 100644 index 0000000..0146e30 Binary files /dev/null and b/lib/assets/images/149_252.png differ diff --git a/lib/assets/images/149_253.png b/lib/assets/images/149_253.png new file mode 100644 index 0000000..e301273 Binary files /dev/null and b/lib/assets/images/149_253.png differ diff --git a/lib/assets/images/149_254.png b/lib/assets/images/149_254.png new file mode 100644 index 0000000..ee3ce0f Binary files /dev/null and b/lib/assets/images/149_254.png differ diff --git a/lib/assets/images/149_255.png b/lib/assets/images/149_255.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_255.png differ diff --git a/lib/assets/images/149_256.png b/lib/assets/images/149_256.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_256.png differ diff --git a/lib/assets/images/149_257.png b/lib/assets/images/149_257.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_257.png differ diff --git a/lib/assets/images/149_258.png b/lib/assets/images/149_258.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_258.png differ diff --git a/lib/assets/images/149_259.png b/lib/assets/images/149_259.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_259.png differ diff --git a/lib/assets/images/149_260.png b/lib/assets/images/149_260.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_260.png differ diff --git a/lib/assets/images/149_261.png b/lib/assets/images/149_261.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_261.png differ diff --git a/lib/assets/images/149_262.png b/lib/assets/images/149_262.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_262.png differ diff --git a/lib/assets/images/149_263.png b/lib/assets/images/149_263.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_263.png differ diff --git a/lib/assets/images/149_264.png b/lib/assets/images/149_264.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_264.png differ diff --git a/lib/assets/images/149_265.png b/lib/assets/images/149_265.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_265.png differ diff --git a/lib/assets/images/149_266.png b/lib/assets/images/149_266.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/149_266.png differ diff --git a/lib/assets/images/149_267.png b/lib/assets/images/149_267.png new file mode 100644 index 0000000..7b6353b Binary files /dev/null and b/lib/assets/images/149_267.png differ diff --git a/lib/assets/images/149_268.png b/lib/assets/images/149_268.png new file mode 100644 index 0000000..797e755 Binary files /dev/null and b/lib/assets/images/149_268.png differ diff --git a/lib/assets/images/149_269.png b/lib/assets/images/149_269.png new file mode 100644 index 0000000..d2da3f0 Binary files /dev/null and b/lib/assets/images/149_269.png differ diff --git a/lib/assets/images/149_270.png b/lib/assets/images/149_270.png new file mode 100644 index 0000000..ba7274d Binary files /dev/null and b/lib/assets/images/149_270.png differ diff --git a/lib/assets/images/149_271.png b/lib/assets/images/149_271.png new file mode 100644 index 0000000..4738d43 Binary files /dev/null and b/lib/assets/images/149_271.png differ diff --git a/lib/assets/images/149_272.png b/lib/assets/images/149_272.png new file mode 100644 index 0000000..821dbb8 Binary files /dev/null and b/lib/assets/images/149_272.png differ diff --git a/lib/assets/images/149_273.png b/lib/assets/images/149_273.png new file mode 100644 index 0000000..1f9502d Binary files /dev/null and b/lib/assets/images/149_273.png differ diff --git a/lib/assets/images/149_274.png b/lib/assets/images/149_274.png new file mode 100644 index 0000000..3fbdcac Binary files /dev/null and b/lib/assets/images/149_274.png differ diff --git a/lib/assets/images/149_275.png b/lib/assets/images/149_275.png new file mode 100644 index 0000000..a782049 Binary files /dev/null and b/lib/assets/images/149_275.png differ diff --git a/lib/assets/images/149_276.png b/lib/assets/images/149_276.png new file mode 100644 index 0000000..b9a3895 Binary files /dev/null and b/lib/assets/images/149_276.png differ diff --git a/lib/assets/images/149_277.png b/lib/assets/images/149_277.png new file mode 100644 index 0000000..e583783 Binary files /dev/null and b/lib/assets/images/149_277.png differ diff --git a/lib/assets/images/149_278.png b/lib/assets/images/149_278.png new file mode 100644 index 0000000..10547f4 Binary files /dev/null and b/lib/assets/images/149_278.png differ diff --git a/lib/assets/images/149_279.png b/lib/assets/images/149_279.png new file mode 100644 index 0000000..ff274ba Binary files /dev/null and b/lib/assets/images/149_279.png differ diff --git a/lib/assets/images/149_280.png b/lib/assets/images/149_280.png new file mode 100644 index 0000000..2dccf25 Binary files /dev/null and b/lib/assets/images/149_280.png differ diff --git a/lib/assets/images/149_281.png b/lib/assets/images/149_281.png new file mode 100644 index 0000000..9029cb6 Binary files /dev/null and b/lib/assets/images/149_281.png differ diff --git a/lib/assets/images/149_282.png b/lib/assets/images/149_282.png new file mode 100644 index 0000000..51a60aa Binary files /dev/null and b/lib/assets/images/149_282.png differ diff --git a/lib/assets/images/149_283.png b/lib/assets/images/149_283.png new file mode 100644 index 0000000..521828d Binary files /dev/null and b/lib/assets/images/149_283.png differ diff --git a/lib/assets/images/149_284.png b/lib/assets/images/149_284.png new file mode 100644 index 0000000..1e1c4a1 Binary files /dev/null and b/lib/assets/images/149_284.png differ diff --git a/lib/assets/images/149_285.png b/lib/assets/images/149_285.png new file mode 100644 index 0000000..32d15a4 Binary files /dev/null and b/lib/assets/images/149_285.png differ diff --git a/lib/assets/images/149_286.png b/lib/assets/images/149_286.png new file mode 100644 index 0000000..565bd61 Binary files /dev/null and b/lib/assets/images/149_286.png differ diff --git a/lib/assets/images/149_287.png b/lib/assets/images/149_287.png new file mode 100644 index 0000000..8c2940c Binary files /dev/null and b/lib/assets/images/149_287.png differ diff --git a/lib/assets/images/149_288.png b/lib/assets/images/149_288.png new file mode 100644 index 0000000..feee2a0 Binary files /dev/null and b/lib/assets/images/149_288.png differ diff --git a/lib/assets/images/149_289.png b/lib/assets/images/149_289.png new file mode 100644 index 0000000..0301c95 Binary files /dev/null and b/lib/assets/images/149_289.png differ diff --git a/lib/assets/images/149_290.png b/lib/assets/images/149_290.png new file mode 100644 index 0000000..533d57d Binary files /dev/null and b/lib/assets/images/149_290.png differ diff --git a/lib/assets/images/149_32.png b/lib/assets/images/149_32.png new file mode 100644 index 0000000..e8dc671 Binary files /dev/null and b/lib/assets/images/149_32.png differ diff --git a/lib/assets/images/149_82.png b/lib/assets/images/149_82.png new file mode 100644 index 0000000..e9636cd Binary files /dev/null and b/lib/assets/images/149_82.png differ diff --git a/lib/assets/images/149_88.png b/lib/assets/images/149_88.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/149_88.png differ diff --git a/lib/assets/images/14_14.png b/lib/assets/images/14_14.png new file mode 100644 index 0000000..9f4fa5f Binary files /dev/null and b/lib/assets/images/14_14.png differ diff --git a/lib/assets/images/152_55.png b/lib/assets/images/152_55.png new file mode 100644 index 0000000..2fa0f1d Binary files /dev/null and b/lib/assets/images/152_55.png differ diff --git a/lib/assets/images/152_67.png b/lib/assets/images/152_67.png new file mode 100644 index 0000000..2fa0f1d Binary files /dev/null and b/lib/assets/images/152_67.png differ diff --git a/lib/assets/images/152_76.png b/lib/assets/images/152_76.png new file mode 100644 index 0000000..2fa0f1d Binary files /dev/null and b/lib/assets/images/152_76.png differ diff --git a/lib/assets/images/159_164.png b/lib/assets/images/159_164.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/159_164.png differ diff --git a/lib/assets/images/159_165.png b/lib/assets/images/159_165.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/159_165.png differ diff --git a/lib/assets/images/159_166.png b/lib/assets/images/159_166.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/159_166.png differ diff --git a/lib/assets/images/159_167.png b/lib/assets/images/159_167.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/159_167.png differ diff --git a/lib/assets/images/159_341.png b/lib/assets/images/159_341.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/159_341.png differ diff --git a/lib/assets/images/159_366.png b/lib/assets/images/159_366.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/159_366.png differ diff --git a/lib/assets/images/159_367.png b/lib/assets/images/159_367.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/159_367.png differ diff --git a/lib/assets/images/159_368.png b/lib/assets/images/159_368.png new file mode 100644 index 0000000..f0dc8de Binary files /dev/null and b/lib/assets/images/159_368.png differ diff --git a/lib/assets/images/159_369.png b/lib/assets/images/159_369.png new file mode 100644 index 0000000..2aa7b35 Binary files /dev/null and b/lib/assets/images/159_369.png differ diff --git a/lib/assets/images/159_370.png b/lib/assets/images/159_370.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/159_370.png differ diff --git a/lib/assets/images/159_371.png b/lib/assets/images/159_371.png new file mode 100644 index 0000000..b9da345 Binary files /dev/null and b/lib/assets/images/159_371.png differ diff --git a/lib/assets/images/159_372.png b/lib/assets/images/159_372.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/159_372.png differ diff --git a/lib/assets/images/159_373.png b/lib/assets/images/159_373.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/159_373.png differ diff --git a/lib/assets/images/159_374.png b/lib/assets/images/159_374.png new file mode 100644 index 0000000..fb78b68 Binary files /dev/null and b/lib/assets/images/159_374.png differ diff --git a/lib/assets/images/159_377.png b/lib/assets/images/159_377.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/159_377.png differ diff --git a/lib/assets/images/159_378.png b/lib/assets/images/159_378.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/159_378.png differ diff --git a/lib/assets/images/159_381.png b/lib/assets/images/159_381.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/159_381.png differ diff --git a/lib/assets/images/159_382.png b/lib/assets/images/159_382.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/159_382.png differ diff --git a/lib/assets/images/159_514.png b/lib/assets/images/159_514.png new file mode 100644 index 0000000..f50a44a Binary files /dev/null and b/lib/assets/images/159_514.png differ diff --git a/lib/assets/images/159_582.png b/lib/assets/images/159_582.png new file mode 100644 index 0000000..6bf37cc Binary files /dev/null and b/lib/assets/images/159_582.png differ diff --git a/lib/assets/images/159_586.png b/lib/assets/images/159_586.png new file mode 100644 index 0000000..318520d Binary files /dev/null and b/lib/assets/images/159_586.png differ diff --git a/lib/assets/images/159_601.png b/lib/assets/images/159_601.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/159_601.png differ diff --git a/lib/assets/images/159_620.png b/lib/assets/images/159_620.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/159_620.png differ diff --git a/lib/assets/images/159_626.png b/lib/assets/images/159_626.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/159_626.png differ diff --git a/lib/assets/images/159_633.png b/lib/assets/images/159_633.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/159_633.png differ diff --git a/lib/assets/images/159_636.png b/lib/assets/images/159_636.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/159_636.png differ diff --git a/lib/assets/images/159_638.png b/lib/assets/images/159_638.png new file mode 100644 index 0000000..cae35e5 Binary files /dev/null and b/lib/assets/images/159_638.png differ diff --git a/lib/assets/images/159_70.png b/lib/assets/images/159_70.png new file mode 100644 index 0000000..21644a7 Binary files /dev/null and b/lib/assets/images/159_70.png differ diff --git a/lib/assets/images/159_74.png b/lib/assets/images/159_74.png new file mode 100644 index 0000000..002c9f0 Binary files /dev/null and b/lib/assets/images/159_74.png differ diff --git a/lib/assets/images/159_78.png b/lib/assets/images/159_78.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/159_78.png differ diff --git a/lib/assets/images/159_83.png b/lib/assets/images/159_83.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/159_83.png differ diff --git a/lib/assets/images/159_90.png b/lib/assets/images/159_90.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/159_90.png differ diff --git a/lib/assets/images/159_92.png b/lib/assets/images/159_92.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/159_92.png differ diff --git a/lib/assets/images/159_94.png b/lib/assets/images/159_94.png new file mode 100644 index 0000000..84cea7c Binary files /dev/null and b/lib/assets/images/159_94.png differ diff --git a/lib/assets/images/176_80.png b/lib/assets/images/176_80.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/176_80.png differ diff --git a/lib/assets/images/176_81.png b/lib/assets/images/176_81.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/176_81.png differ diff --git a/lib/assets/images/17_41.png b/lib/assets/images/17_41.png new file mode 100644 index 0000000..c2429f6 Binary files /dev/null and b/lib/assets/images/17_41.png differ diff --git a/lib/assets/images/186_101.png b/lib/assets/images/186_101.png new file mode 100644 index 0000000..c312329 Binary files /dev/null and b/lib/assets/images/186_101.png differ diff --git a/lib/assets/images/186_104.png b/lib/assets/images/186_104.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/186_104.png differ diff --git a/lib/assets/images/186_107.png b/lib/assets/images/186_107.png new file mode 100644 index 0000000..d1c0b84 Binary files /dev/null and b/lib/assets/images/186_107.png differ diff --git a/lib/assets/images/186_110.png b/lib/assets/images/186_110.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/186_110.png differ diff --git a/lib/assets/images/186_113.png b/lib/assets/images/186_113.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/186_113.png differ diff --git a/lib/assets/images/186_121.png b/lib/assets/images/186_121.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/186_121.png differ diff --git a/lib/assets/images/186_122.png b/lib/assets/images/186_122.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/186_122.png differ diff --git a/lib/assets/images/186_128.png b/lib/assets/images/186_128.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/186_128.png differ diff --git a/lib/assets/images/189_150.png b/lib/assets/images/189_150.png new file mode 100644 index 0000000..c10a287 Binary files /dev/null and b/lib/assets/images/189_150.png differ diff --git a/lib/assets/images/189_165.png b/lib/assets/images/189_165.png new file mode 100644 index 0000000..c309ad9 Binary files /dev/null and b/lib/assets/images/189_165.png differ diff --git a/lib/assets/images/19_10.png b/lib/assets/images/19_10.png new file mode 100644 index 0000000..bb9efcd Binary files /dev/null and b/lib/assets/images/19_10.png differ diff --git a/lib/assets/images/19_33.png b/lib/assets/images/19_33.png new file mode 100644 index 0000000..f8b1654 Binary files /dev/null and b/lib/assets/images/19_33.png differ diff --git a/lib/assets/images/19_42.png b/lib/assets/images/19_42.png new file mode 100644 index 0000000..f8b1654 Binary files /dev/null and b/lib/assets/images/19_42.png differ diff --git a/lib/assets/images/19_5.png b/lib/assets/images/19_5.png new file mode 100644 index 0000000..e612e58 Binary files /dev/null and b/lib/assets/images/19_5.png differ diff --git a/lib/assets/images/1_2.png b/lib/assets/images/1_2.png new file mode 100644 index 0000000..8f7260b Binary files /dev/null and b/lib/assets/images/1_2.png differ diff --git a/lib/assets/images/1_6.png b/lib/assets/images/1_6.png new file mode 100644 index 0000000..bd17ba6 Binary files /dev/null and b/lib/assets/images/1_6.png differ diff --git a/lib/assets/images/201_156.png b/lib/assets/images/201_156.png new file mode 100644 index 0000000..899ee08 Binary files /dev/null and b/lib/assets/images/201_156.png differ diff --git a/lib/assets/images/201_157.png b/lib/assets/images/201_157.png new file mode 100644 index 0000000..f49f520 Binary files /dev/null and b/lib/assets/images/201_157.png differ diff --git a/lib/assets/images/201_158.png b/lib/assets/images/201_158.png new file mode 100644 index 0000000..fa67434 Binary files /dev/null and b/lib/assets/images/201_158.png differ diff --git a/lib/assets/images/201_159.png b/lib/assets/images/201_159.png new file mode 100644 index 0000000..69939af Binary files /dev/null and b/lib/assets/images/201_159.png differ diff --git a/lib/assets/images/201_160.png b/lib/assets/images/201_160.png new file mode 100644 index 0000000..49c9d8f Binary files /dev/null and b/lib/assets/images/201_160.png differ diff --git a/lib/assets/images/201_161.png b/lib/assets/images/201_161.png new file mode 100644 index 0000000..557475f Binary files /dev/null and b/lib/assets/images/201_161.png differ diff --git a/lib/assets/images/201_162.png b/lib/assets/images/201_162.png new file mode 100644 index 0000000..84385a2 Binary files /dev/null and b/lib/assets/images/201_162.png differ diff --git a/lib/assets/images/201_163.png b/lib/assets/images/201_163.png new file mode 100644 index 0000000..029ab1a Binary files /dev/null and b/lib/assets/images/201_163.png differ diff --git a/lib/assets/images/201_164.png b/lib/assets/images/201_164.png new file mode 100644 index 0000000..b6c8794 Binary files /dev/null and b/lib/assets/images/201_164.png differ diff --git a/lib/assets/images/201_165.png b/lib/assets/images/201_165.png new file mode 100644 index 0000000..8192317 Binary files /dev/null and b/lib/assets/images/201_165.png differ diff --git a/lib/assets/images/201_166.png b/lib/assets/images/201_166.png new file mode 100644 index 0000000..4d00cff Binary files /dev/null and b/lib/assets/images/201_166.png differ diff --git a/lib/assets/images/201_167.png b/lib/assets/images/201_167.png new file mode 100644 index 0000000..e77a2ff Binary files /dev/null and b/lib/assets/images/201_167.png differ diff --git a/lib/assets/images/201_168.png b/lib/assets/images/201_168.png new file mode 100644 index 0000000..4fb7a80 Binary files /dev/null and b/lib/assets/images/201_168.png differ diff --git a/lib/assets/images/201_169.png b/lib/assets/images/201_169.png new file mode 100644 index 0000000..5d2f43b Binary files /dev/null and b/lib/assets/images/201_169.png differ diff --git a/lib/assets/images/201_170.png b/lib/assets/images/201_170.png new file mode 100644 index 0000000..d02fb91 Binary files /dev/null and b/lib/assets/images/201_170.png differ diff --git a/lib/assets/images/201_171.png b/lib/assets/images/201_171.png new file mode 100644 index 0000000..d9c4e43 Binary files /dev/null and b/lib/assets/images/201_171.png differ diff --git a/lib/assets/images/201_172.png b/lib/assets/images/201_172.png new file mode 100644 index 0000000..757e621 Binary files /dev/null and b/lib/assets/images/201_172.png differ diff --git a/lib/assets/images/201_173.png b/lib/assets/images/201_173.png new file mode 100644 index 0000000..fe24ab2 Binary files /dev/null and b/lib/assets/images/201_173.png differ diff --git a/lib/assets/images/201_174.png b/lib/assets/images/201_174.png new file mode 100644 index 0000000..d145967 Binary files /dev/null and b/lib/assets/images/201_174.png differ diff --git a/lib/assets/images/201_175.png b/lib/assets/images/201_175.png new file mode 100644 index 0000000..fa25d9d Binary files /dev/null and b/lib/assets/images/201_175.png differ diff --git a/lib/assets/images/201_176.png b/lib/assets/images/201_176.png new file mode 100644 index 0000000..7053f9f Binary files /dev/null and b/lib/assets/images/201_176.png differ diff --git a/lib/assets/images/201_177.png b/lib/assets/images/201_177.png new file mode 100644 index 0000000..bda9048 Binary files /dev/null and b/lib/assets/images/201_177.png differ diff --git a/lib/assets/images/201_178.png b/lib/assets/images/201_178.png new file mode 100644 index 0000000..e68f66f Binary files /dev/null and b/lib/assets/images/201_178.png differ diff --git a/lib/assets/images/201_179.png b/lib/assets/images/201_179.png new file mode 100644 index 0000000..1ac090a Binary files /dev/null and b/lib/assets/images/201_179.png differ diff --git a/lib/assets/images/201_180.png b/lib/assets/images/201_180.png new file mode 100644 index 0000000..b28fa2c Binary files /dev/null and b/lib/assets/images/201_180.png differ diff --git a/lib/assets/images/201_181.png b/lib/assets/images/201_181.png new file mode 100644 index 0000000..2770a7f Binary files /dev/null and b/lib/assets/images/201_181.png differ diff --git a/lib/assets/images/201_182.png b/lib/assets/images/201_182.png new file mode 100644 index 0000000..47bdb69 Binary files /dev/null and b/lib/assets/images/201_182.png differ diff --git a/lib/assets/images/201_183.png b/lib/assets/images/201_183.png new file mode 100644 index 0000000..0755804 Binary files /dev/null and b/lib/assets/images/201_183.png differ diff --git a/lib/assets/images/201_184.png b/lib/assets/images/201_184.png new file mode 100644 index 0000000..b3f5f27 Binary files /dev/null and b/lib/assets/images/201_184.png differ diff --git a/lib/assets/images/201_185.png b/lib/assets/images/201_185.png new file mode 100644 index 0000000..321a0ff Binary files /dev/null and b/lib/assets/images/201_185.png differ diff --git a/lib/assets/images/201_186.png b/lib/assets/images/201_186.png new file mode 100644 index 0000000..c0cd75e Binary files /dev/null and b/lib/assets/images/201_186.png differ diff --git a/lib/assets/images/201_187.png b/lib/assets/images/201_187.png new file mode 100644 index 0000000..4b33230 Binary files /dev/null and b/lib/assets/images/201_187.png differ diff --git a/lib/assets/images/201_188.png b/lib/assets/images/201_188.png new file mode 100644 index 0000000..21c694c Binary files /dev/null and b/lib/assets/images/201_188.png differ diff --git a/lib/assets/images/201_189.png b/lib/assets/images/201_189.png new file mode 100644 index 0000000..af0d6c3 Binary files /dev/null and b/lib/assets/images/201_189.png differ diff --git a/lib/assets/images/201_190.png b/lib/assets/images/201_190.png new file mode 100644 index 0000000..cb22080 Binary files /dev/null and b/lib/assets/images/201_190.png differ diff --git a/lib/assets/images/201_191.png b/lib/assets/images/201_191.png new file mode 100644 index 0000000..5191ff4 Binary files /dev/null and b/lib/assets/images/201_191.png differ diff --git a/lib/assets/images/201_192.png b/lib/assets/images/201_192.png new file mode 100644 index 0000000..8b3e29f Binary files /dev/null and b/lib/assets/images/201_192.png differ diff --git a/lib/assets/images/201_193.png b/lib/assets/images/201_193.png new file mode 100644 index 0000000..c1d219b Binary files /dev/null and b/lib/assets/images/201_193.png differ diff --git a/lib/assets/images/201_194.png b/lib/assets/images/201_194.png new file mode 100644 index 0000000..68ca875 Binary files /dev/null and b/lib/assets/images/201_194.png differ diff --git a/lib/assets/images/201_195.png b/lib/assets/images/201_195.png new file mode 100644 index 0000000..922feee Binary files /dev/null and b/lib/assets/images/201_195.png differ diff --git a/lib/assets/images/201_196.png b/lib/assets/images/201_196.png new file mode 100644 index 0000000..9191c41 Binary files /dev/null and b/lib/assets/images/201_196.png differ diff --git a/lib/assets/images/201_197.png b/lib/assets/images/201_197.png new file mode 100644 index 0000000..9826fef Binary files /dev/null and b/lib/assets/images/201_197.png differ diff --git a/lib/assets/images/201_198.png b/lib/assets/images/201_198.png new file mode 100644 index 0000000..bfc1f75 Binary files /dev/null and b/lib/assets/images/201_198.png differ diff --git a/lib/assets/images/201_201.png b/lib/assets/images/201_201.png new file mode 100644 index 0000000..e134dec Binary files /dev/null and b/lib/assets/images/201_201.png differ diff --git a/lib/assets/images/201_202.png b/lib/assets/images/201_202.png new file mode 100644 index 0000000..39e67b0 Binary files /dev/null and b/lib/assets/images/201_202.png differ diff --git a/lib/assets/images/201_203.png b/lib/assets/images/201_203.png new file mode 100644 index 0000000..6a01afd Binary files /dev/null and b/lib/assets/images/201_203.png differ diff --git a/lib/assets/images/201_204.png b/lib/assets/images/201_204.png new file mode 100644 index 0000000..48893b5 Binary files /dev/null and b/lib/assets/images/201_204.png differ diff --git a/lib/assets/images/201_205.png b/lib/assets/images/201_205.png new file mode 100644 index 0000000..2f49e94 Binary files /dev/null and b/lib/assets/images/201_205.png differ diff --git a/lib/assets/images/201_206.png b/lib/assets/images/201_206.png new file mode 100644 index 0000000..780aa38 Binary files /dev/null and b/lib/assets/images/201_206.png differ diff --git a/lib/assets/images/201_207.png b/lib/assets/images/201_207.png new file mode 100644 index 0000000..1ce6053 Binary files /dev/null and b/lib/assets/images/201_207.png differ diff --git a/lib/assets/images/201_208.png b/lib/assets/images/201_208.png new file mode 100644 index 0000000..575d29a Binary files /dev/null and b/lib/assets/images/201_208.png differ diff --git a/lib/assets/images/201_209.png b/lib/assets/images/201_209.png new file mode 100644 index 0000000..f0e2f51 Binary files /dev/null and b/lib/assets/images/201_209.png differ diff --git a/lib/assets/images/201_210.png b/lib/assets/images/201_210.png new file mode 100644 index 0000000..f011054 Binary files /dev/null and b/lib/assets/images/201_210.png differ diff --git a/lib/assets/images/201_211.png b/lib/assets/images/201_211.png new file mode 100644 index 0000000..06a3239 Binary files /dev/null and b/lib/assets/images/201_211.png differ diff --git a/lib/assets/images/201_212.png b/lib/assets/images/201_212.png new file mode 100644 index 0000000..e71a163 Binary files /dev/null and b/lib/assets/images/201_212.png differ diff --git a/lib/assets/images/201_213.png b/lib/assets/images/201_213.png new file mode 100644 index 0000000..4429129 Binary files /dev/null and b/lib/assets/images/201_213.png differ diff --git a/lib/assets/images/201_214.png b/lib/assets/images/201_214.png new file mode 100644 index 0000000..d7c3c03 Binary files /dev/null and b/lib/assets/images/201_214.png differ diff --git a/lib/assets/images/201_215.png b/lib/assets/images/201_215.png new file mode 100644 index 0000000..826aadc Binary files /dev/null and b/lib/assets/images/201_215.png differ diff --git a/lib/assets/images/201_216.png b/lib/assets/images/201_216.png new file mode 100644 index 0000000..d6c2bff Binary files /dev/null and b/lib/assets/images/201_216.png differ diff --git a/lib/assets/images/201_217.png b/lib/assets/images/201_217.png new file mode 100644 index 0000000..1757290 Binary files /dev/null and b/lib/assets/images/201_217.png differ diff --git a/lib/assets/images/201_218.png b/lib/assets/images/201_218.png new file mode 100644 index 0000000..4ba7461 Binary files /dev/null and b/lib/assets/images/201_218.png differ diff --git a/lib/assets/images/201_219.png b/lib/assets/images/201_219.png new file mode 100644 index 0000000..fad46c3 Binary files /dev/null and b/lib/assets/images/201_219.png differ diff --git a/lib/assets/images/201_220.png b/lib/assets/images/201_220.png new file mode 100644 index 0000000..44b6fb1 Binary files /dev/null and b/lib/assets/images/201_220.png differ diff --git a/lib/assets/images/201_221.png b/lib/assets/images/201_221.png new file mode 100644 index 0000000..e7e62b4 Binary files /dev/null and b/lib/assets/images/201_221.png differ diff --git a/lib/assets/images/201_222.png b/lib/assets/images/201_222.png new file mode 100644 index 0000000..015dd42 Binary files /dev/null and b/lib/assets/images/201_222.png differ diff --git a/lib/assets/images/201_223.png b/lib/assets/images/201_223.png new file mode 100644 index 0000000..ceb2f01 Binary files /dev/null and b/lib/assets/images/201_223.png differ diff --git a/lib/assets/images/201_224.png b/lib/assets/images/201_224.png new file mode 100644 index 0000000..73ff887 Binary files /dev/null and b/lib/assets/images/201_224.png differ diff --git a/lib/assets/images/201_225.png b/lib/assets/images/201_225.png new file mode 100644 index 0000000..ca5ddd8 Binary files /dev/null and b/lib/assets/images/201_225.png differ diff --git a/lib/assets/images/201_226.png b/lib/assets/images/201_226.png new file mode 100644 index 0000000..0d317ed Binary files /dev/null and b/lib/assets/images/201_226.png differ diff --git a/lib/assets/images/201_227.png b/lib/assets/images/201_227.png new file mode 100644 index 0000000..f64f2a8 Binary files /dev/null and b/lib/assets/images/201_227.png differ diff --git a/lib/assets/images/201_228.png b/lib/assets/images/201_228.png new file mode 100644 index 0000000..681a993 Binary files /dev/null and b/lib/assets/images/201_228.png differ diff --git a/lib/assets/images/201_229.png b/lib/assets/images/201_229.png new file mode 100644 index 0000000..fc20104 Binary files /dev/null and b/lib/assets/images/201_229.png differ diff --git a/lib/assets/images/201_230.png b/lib/assets/images/201_230.png new file mode 100644 index 0000000..7b50756 Binary files /dev/null and b/lib/assets/images/201_230.png differ diff --git a/lib/assets/images/201_231.png b/lib/assets/images/201_231.png new file mode 100644 index 0000000..884eb88 Binary files /dev/null and b/lib/assets/images/201_231.png differ diff --git a/lib/assets/images/201_232.png b/lib/assets/images/201_232.png new file mode 100644 index 0000000..814dc8c Binary files /dev/null and b/lib/assets/images/201_232.png differ diff --git a/lib/assets/images/201_233.png b/lib/assets/images/201_233.png new file mode 100644 index 0000000..138c8a2 Binary files /dev/null and b/lib/assets/images/201_233.png differ diff --git a/lib/assets/images/201_234.png b/lib/assets/images/201_234.png new file mode 100644 index 0000000..f7b598a Binary files /dev/null and b/lib/assets/images/201_234.png differ diff --git a/lib/assets/images/201_235.png b/lib/assets/images/201_235.png new file mode 100644 index 0000000..6fff3eb Binary files /dev/null and b/lib/assets/images/201_235.png differ diff --git a/lib/assets/images/201_236.png b/lib/assets/images/201_236.png new file mode 100644 index 0000000..fe4e2fa Binary files /dev/null and b/lib/assets/images/201_236.png differ diff --git a/lib/assets/images/201_237.png b/lib/assets/images/201_237.png new file mode 100644 index 0000000..0299942 Binary files /dev/null and b/lib/assets/images/201_237.png differ diff --git a/lib/assets/images/201_238.png b/lib/assets/images/201_238.png new file mode 100644 index 0000000..79ae4f6 Binary files /dev/null and b/lib/assets/images/201_238.png differ diff --git a/lib/assets/images/201_239.png b/lib/assets/images/201_239.png new file mode 100644 index 0000000..bece11c Binary files /dev/null and b/lib/assets/images/201_239.png differ diff --git a/lib/assets/images/201_240.png b/lib/assets/images/201_240.png new file mode 100644 index 0000000..9f708c4 Binary files /dev/null and b/lib/assets/images/201_240.png differ diff --git a/lib/assets/images/201_241.png b/lib/assets/images/201_241.png new file mode 100644 index 0000000..732e478 Binary files /dev/null and b/lib/assets/images/201_241.png differ diff --git a/lib/assets/images/201_242.png b/lib/assets/images/201_242.png new file mode 100644 index 0000000..11b1af2 Binary files /dev/null and b/lib/assets/images/201_242.png differ diff --git a/lib/assets/images/201_247.png b/lib/assets/images/201_247.png new file mode 100644 index 0000000..8b9526c Binary files /dev/null and b/lib/assets/images/201_247.png differ diff --git a/lib/assets/images/201_248.png b/lib/assets/images/201_248.png new file mode 100644 index 0000000..fca537d Binary files /dev/null and b/lib/assets/images/201_248.png differ diff --git a/lib/assets/images/201_249.png b/lib/assets/images/201_249.png new file mode 100644 index 0000000..49d1662 Binary files /dev/null and b/lib/assets/images/201_249.png differ diff --git a/lib/assets/images/201_250.png b/lib/assets/images/201_250.png new file mode 100644 index 0000000..5f8c467 Binary files /dev/null and b/lib/assets/images/201_250.png differ diff --git a/lib/assets/images/201_251.png b/lib/assets/images/201_251.png new file mode 100644 index 0000000..35bb623 Binary files /dev/null and b/lib/assets/images/201_251.png differ diff --git a/lib/assets/images/201_252.png b/lib/assets/images/201_252.png new file mode 100644 index 0000000..b5fc4fe Binary files /dev/null and b/lib/assets/images/201_252.png differ diff --git a/lib/assets/images/201_253.png b/lib/assets/images/201_253.png new file mode 100644 index 0000000..9556c4c Binary files /dev/null and b/lib/assets/images/201_253.png differ diff --git a/lib/assets/images/201_254.png b/lib/assets/images/201_254.png new file mode 100644 index 0000000..fc39947 Binary files /dev/null and b/lib/assets/images/201_254.png differ diff --git a/lib/assets/images/201_255.png b/lib/assets/images/201_255.png new file mode 100644 index 0000000..db787d5 Binary files /dev/null and b/lib/assets/images/201_255.png differ diff --git a/lib/assets/images/201_256.png b/lib/assets/images/201_256.png new file mode 100644 index 0000000..f0aba4b Binary files /dev/null and b/lib/assets/images/201_256.png differ diff --git a/lib/assets/images/201_257.png b/lib/assets/images/201_257.png new file mode 100644 index 0000000..85d7b9d Binary files /dev/null and b/lib/assets/images/201_257.png differ diff --git a/lib/assets/images/201_258.png b/lib/assets/images/201_258.png new file mode 100644 index 0000000..eb85162 Binary files /dev/null and b/lib/assets/images/201_258.png differ diff --git a/lib/assets/images/201_259.png b/lib/assets/images/201_259.png new file mode 100644 index 0000000..024a040 Binary files /dev/null and b/lib/assets/images/201_259.png differ diff --git a/lib/assets/images/201_260.png b/lib/assets/images/201_260.png new file mode 100644 index 0000000..b282af6 Binary files /dev/null and b/lib/assets/images/201_260.png differ diff --git a/lib/assets/images/201_261.png b/lib/assets/images/201_261.png new file mode 100644 index 0000000..a89358b Binary files /dev/null and b/lib/assets/images/201_261.png differ diff --git a/lib/assets/images/201_262.png b/lib/assets/images/201_262.png new file mode 100644 index 0000000..611b22e Binary files /dev/null and b/lib/assets/images/201_262.png differ diff --git a/lib/assets/images/201_263.png b/lib/assets/images/201_263.png new file mode 100644 index 0000000..024a040 Binary files /dev/null and b/lib/assets/images/201_263.png differ diff --git a/lib/assets/images/201_264.png b/lib/assets/images/201_264.png new file mode 100644 index 0000000..592d5b5 Binary files /dev/null and b/lib/assets/images/201_264.png differ diff --git a/lib/assets/images/201_265.png b/lib/assets/images/201_265.png new file mode 100644 index 0000000..1455e79 Binary files /dev/null and b/lib/assets/images/201_265.png differ diff --git a/lib/assets/images/201_266.png b/lib/assets/images/201_266.png new file mode 100644 index 0000000..11a4fe4 Binary files /dev/null and b/lib/assets/images/201_266.png differ diff --git a/lib/assets/images/201_267.png b/lib/assets/images/201_267.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_267.png differ diff --git a/lib/assets/images/201_268.png b/lib/assets/images/201_268.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_268.png differ diff --git a/lib/assets/images/201_269.png b/lib/assets/images/201_269.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_269.png differ diff --git a/lib/assets/images/201_270.png b/lib/assets/images/201_270.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_270.png differ diff --git a/lib/assets/images/201_271.png b/lib/assets/images/201_271.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_271.png differ diff --git a/lib/assets/images/201_272.png b/lib/assets/images/201_272.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_272.png differ diff --git a/lib/assets/images/201_273.png b/lib/assets/images/201_273.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_273.png differ diff --git a/lib/assets/images/201_274.png b/lib/assets/images/201_274.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_274.png differ diff --git a/lib/assets/images/201_275.png b/lib/assets/images/201_275.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_275.png differ diff --git a/lib/assets/images/201_276.png b/lib/assets/images/201_276.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_276.png differ diff --git a/lib/assets/images/201_277.png b/lib/assets/images/201_277.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_277.png differ diff --git a/lib/assets/images/201_278.png b/lib/assets/images/201_278.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_278.png differ diff --git a/lib/assets/images/201_279.png b/lib/assets/images/201_279.png new file mode 100644 index 0000000..45dd732 Binary files /dev/null and b/lib/assets/images/201_279.png differ diff --git a/lib/assets/images/201_280.png b/lib/assets/images/201_280.png new file mode 100644 index 0000000..b282af6 Binary files /dev/null and b/lib/assets/images/201_280.png differ diff --git a/lib/assets/images/201_281.png b/lib/assets/images/201_281.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_281.png differ diff --git a/lib/assets/images/201_282.png b/lib/assets/images/201_282.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/201_282.png differ diff --git a/lib/assets/images/201_283.png b/lib/assets/images/201_283.png new file mode 100644 index 0000000..6987967 Binary files /dev/null and b/lib/assets/images/201_283.png differ diff --git a/lib/assets/images/201_284.png b/lib/assets/images/201_284.png new file mode 100644 index 0000000..f403f47 Binary files /dev/null and b/lib/assets/images/201_284.png differ diff --git a/lib/assets/images/201_285.png b/lib/assets/images/201_285.png new file mode 100644 index 0000000..685994a Binary files /dev/null and b/lib/assets/images/201_285.png differ diff --git a/lib/assets/images/201_286.png b/lib/assets/images/201_286.png new file mode 100644 index 0000000..09aa53e Binary files /dev/null and b/lib/assets/images/201_286.png differ diff --git a/lib/assets/images/201_287.png b/lib/assets/images/201_287.png new file mode 100644 index 0000000..5898e98 Binary files /dev/null and b/lib/assets/images/201_287.png differ diff --git a/lib/assets/images/201_288.png b/lib/assets/images/201_288.png new file mode 100644 index 0000000..c6440ec Binary files /dev/null and b/lib/assets/images/201_288.png differ diff --git a/lib/assets/images/201_289.png b/lib/assets/images/201_289.png new file mode 100644 index 0000000..0dbf462 Binary files /dev/null and b/lib/assets/images/201_289.png differ diff --git a/lib/assets/images/201_290.png b/lib/assets/images/201_290.png new file mode 100644 index 0000000..7538c0e Binary files /dev/null and b/lib/assets/images/201_290.png differ diff --git a/lib/assets/images/201_291.png b/lib/assets/images/201_291.png new file mode 100644 index 0000000..a617ec5 Binary files /dev/null and b/lib/assets/images/201_291.png differ diff --git a/lib/assets/images/201_292.png b/lib/assets/images/201_292.png new file mode 100644 index 0000000..6c468e0 Binary files /dev/null and b/lib/assets/images/201_292.png differ diff --git a/lib/assets/images/201_293.png b/lib/assets/images/201_293.png new file mode 100644 index 0000000..2c12aab Binary files /dev/null and b/lib/assets/images/201_293.png differ diff --git a/lib/assets/images/201_294.png b/lib/assets/images/201_294.png new file mode 100644 index 0000000..9142ff4 Binary files /dev/null and b/lib/assets/images/201_294.png differ diff --git a/lib/assets/images/201_295.png b/lib/assets/images/201_295.png new file mode 100644 index 0000000..4de74d3 Binary files /dev/null and b/lib/assets/images/201_295.png differ diff --git a/lib/assets/images/201_296.png b/lib/assets/images/201_296.png new file mode 100644 index 0000000..11e8558 Binary files /dev/null and b/lib/assets/images/201_296.png differ diff --git a/lib/assets/images/201_297.png b/lib/assets/images/201_297.png new file mode 100644 index 0000000..19e4436 Binary files /dev/null and b/lib/assets/images/201_297.png differ diff --git a/lib/assets/images/201_298.png b/lib/assets/images/201_298.png new file mode 100644 index 0000000..348ebaf Binary files /dev/null and b/lib/assets/images/201_298.png differ diff --git a/lib/assets/images/201_299.png b/lib/assets/images/201_299.png new file mode 100644 index 0000000..302dace Binary files /dev/null and b/lib/assets/images/201_299.png differ diff --git a/lib/assets/images/201_300.png b/lib/assets/images/201_300.png new file mode 100644 index 0000000..f063b0f Binary files /dev/null and b/lib/assets/images/201_300.png differ diff --git a/lib/assets/images/201_301.png b/lib/assets/images/201_301.png new file mode 100644 index 0000000..86bc993 Binary files /dev/null and b/lib/assets/images/201_301.png differ diff --git a/lib/assets/images/201_302.png b/lib/assets/images/201_302.png new file mode 100644 index 0000000..e7e20a4 Binary files /dev/null and b/lib/assets/images/201_302.png differ diff --git a/lib/assets/images/201_303.png b/lib/assets/images/201_303.png new file mode 100644 index 0000000..4fab7b4 Binary files /dev/null and b/lib/assets/images/201_303.png differ diff --git a/lib/assets/images/201_304.png b/lib/assets/images/201_304.png new file mode 100644 index 0000000..aa6cbfa Binary files /dev/null and b/lib/assets/images/201_304.png differ diff --git a/lib/assets/images/201_305.png b/lib/assets/images/201_305.png new file mode 100644 index 0000000..e98acfe Binary files /dev/null and b/lib/assets/images/201_305.png differ diff --git a/lib/assets/images/201_306.png b/lib/assets/images/201_306.png new file mode 100644 index 0000000..5c2ab89 Binary files /dev/null and b/lib/assets/images/201_306.png differ diff --git a/lib/assets/images/201_307.png b/lib/assets/images/201_307.png new file mode 100644 index 0000000..af4f89e Binary files /dev/null and b/lib/assets/images/201_307.png differ diff --git a/lib/assets/images/201_308.png b/lib/assets/images/201_308.png new file mode 100644 index 0000000..a72d6e9 Binary files /dev/null and b/lib/assets/images/201_308.png differ diff --git a/lib/assets/images/201_309.png b/lib/assets/images/201_309.png new file mode 100644 index 0000000..b96fc03 Binary files /dev/null and b/lib/assets/images/201_309.png differ diff --git a/lib/assets/images/201_310.png b/lib/assets/images/201_310.png new file mode 100644 index 0000000..780a227 Binary files /dev/null and b/lib/assets/images/201_310.png differ diff --git a/lib/assets/images/201_311.png b/lib/assets/images/201_311.png new file mode 100644 index 0000000..9ac4a68 Binary files /dev/null and b/lib/assets/images/201_311.png differ diff --git a/lib/assets/images/201_312.png b/lib/assets/images/201_312.png new file mode 100644 index 0000000..4f9f1ec Binary files /dev/null and b/lib/assets/images/201_312.png differ diff --git a/lib/assets/images/201_313.png b/lib/assets/images/201_313.png new file mode 100644 index 0000000..2c709fc Binary files /dev/null and b/lib/assets/images/201_313.png differ diff --git a/lib/assets/images/201_314.png b/lib/assets/images/201_314.png new file mode 100644 index 0000000..7320f47 Binary files /dev/null and b/lib/assets/images/201_314.png differ diff --git a/lib/assets/images/201_315.png b/lib/assets/images/201_315.png new file mode 100644 index 0000000..4f910f9 Binary files /dev/null and b/lib/assets/images/201_315.png differ diff --git a/lib/assets/images/201_316.png b/lib/assets/images/201_316.png new file mode 100644 index 0000000..77fba7c Binary files /dev/null and b/lib/assets/images/201_316.png differ diff --git a/lib/assets/images/201_317.png b/lib/assets/images/201_317.png new file mode 100644 index 0000000..c48ba90 Binary files /dev/null and b/lib/assets/images/201_317.png differ diff --git a/lib/assets/images/201_318.png b/lib/assets/images/201_318.png new file mode 100644 index 0000000..b7fab4c Binary files /dev/null and b/lib/assets/images/201_318.png differ diff --git a/lib/assets/images/201_319.png b/lib/assets/images/201_319.png new file mode 100644 index 0000000..656f62b Binary files /dev/null and b/lib/assets/images/201_319.png differ diff --git a/lib/assets/images/201_320.png b/lib/assets/images/201_320.png new file mode 100644 index 0000000..70c5991 Binary files /dev/null and b/lib/assets/images/201_320.png differ diff --git a/lib/assets/images/201_321.png b/lib/assets/images/201_321.png new file mode 100644 index 0000000..2493d0e Binary files /dev/null and b/lib/assets/images/201_321.png differ diff --git a/lib/assets/images/201_322.png b/lib/assets/images/201_322.png new file mode 100644 index 0000000..b869001 Binary files /dev/null and b/lib/assets/images/201_322.png differ diff --git a/lib/assets/images/201_323.png b/lib/assets/images/201_323.png new file mode 100644 index 0000000..9f12b27 Binary files /dev/null and b/lib/assets/images/201_323.png differ diff --git a/lib/assets/images/201_324.png b/lib/assets/images/201_324.png new file mode 100644 index 0000000..1b64d3a Binary files /dev/null and b/lib/assets/images/201_324.png differ diff --git a/lib/assets/images/201_325.png b/lib/assets/images/201_325.png new file mode 100644 index 0000000..8c159a4 Binary files /dev/null and b/lib/assets/images/201_325.png differ diff --git a/lib/assets/images/201_326.png b/lib/assets/images/201_326.png new file mode 100644 index 0000000..f3cf012 Binary files /dev/null and b/lib/assets/images/201_326.png differ diff --git a/lib/assets/images/201_327.png b/lib/assets/images/201_327.png new file mode 100644 index 0000000..e3f064d Binary files /dev/null and b/lib/assets/images/201_327.png differ diff --git a/lib/assets/images/201_328.png b/lib/assets/images/201_328.png new file mode 100644 index 0000000..d328f3b Binary files /dev/null and b/lib/assets/images/201_328.png differ diff --git a/lib/assets/images/201_329.png b/lib/assets/images/201_329.png new file mode 100644 index 0000000..bf6d85d Binary files /dev/null and b/lib/assets/images/201_329.png differ diff --git a/lib/assets/images/201_330.png b/lib/assets/images/201_330.png new file mode 100644 index 0000000..1aa0f0c Binary files /dev/null and b/lib/assets/images/201_330.png differ diff --git a/lib/assets/images/201_331.png b/lib/assets/images/201_331.png new file mode 100644 index 0000000..ee6a455 Binary files /dev/null and b/lib/assets/images/201_331.png differ diff --git a/lib/assets/images/201_332.png b/lib/assets/images/201_332.png new file mode 100644 index 0000000..665fe05 Binary files /dev/null and b/lib/assets/images/201_332.png differ diff --git a/lib/assets/images/201_80.png b/lib/assets/images/201_80.png new file mode 100644 index 0000000..93cb6db Binary files /dev/null and b/lib/assets/images/201_80.png differ diff --git a/lib/assets/images/203_100.png b/lib/assets/images/203_100.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/203_100.png differ diff --git a/lib/assets/images/203_104.png b/lib/assets/images/203_104.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/203_104.png differ diff --git a/lib/assets/images/203_109.png b/lib/assets/images/203_109.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/203_109.png differ diff --git a/lib/assets/images/203_115.png b/lib/assets/images/203_115.png new file mode 100644 index 0000000..cf13b1e Binary files /dev/null and b/lib/assets/images/203_115.png differ diff --git a/lib/assets/images/203_116.png b/lib/assets/images/203_116.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/203_116.png differ diff --git a/lib/assets/images/203_122.png b/lib/assets/images/203_122.png new file mode 100644 index 0000000..81da172 Binary files /dev/null and b/lib/assets/images/203_122.png differ diff --git a/lib/assets/images/203_126.png b/lib/assets/images/203_126.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/203_126.png differ diff --git a/lib/assets/images/203_144.png b/lib/assets/images/203_144.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/203_144.png differ diff --git a/lib/assets/images/203_146.png b/lib/assets/images/203_146.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/203_146.png differ diff --git a/lib/assets/images/203_154.png b/lib/assets/images/203_154.png new file mode 100644 index 0000000..b2974d5 Binary files /dev/null and b/lib/assets/images/203_154.png differ diff --git a/lib/assets/images/203_274.png b/lib/assets/images/203_274.png new file mode 100644 index 0000000..a80deb4 Binary files /dev/null and b/lib/assets/images/203_274.png differ diff --git a/lib/assets/images/203_275.png b/lib/assets/images/203_275.png new file mode 100644 index 0000000..c638884 Binary files /dev/null and b/lib/assets/images/203_275.png differ diff --git a/lib/assets/images/203_276.png b/lib/assets/images/203_276.png new file mode 100644 index 0000000..01f92c5 Binary files /dev/null and b/lib/assets/images/203_276.png differ diff --git a/lib/assets/images/203_277.png b/lib/assets/images/203_277.png new file mode 100644 index 0000000..fe814d1 Binary files /dev/null and b/lib/assets/images/203_277.png differ diff --git a/lib/assets/images/203_280.png b/lib/assets/images/203_280.png new file mode 100644 index 0000000..fe814d1 Binary files /dev/null and b/lib/assets/images/203_280.png differ diff --git a/lib/assets/images/203_89.png b/lib/assets/images/203_89.png new file mode 100644 index 0000000..e0b2438 Binary files /dev/null and b/lib/assets/images/203_89.png differ diff --git a/lib/assets/images/203_93.png b/lib/assets/images/203_93.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/203_93.png differ diff --git a/lib/assets/images/203_94.png b/lib/assets/images/203_94.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/203_94.png differ diff --git a/lib/assets/images/203_96.png b/lib/assets/images/203_96.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/203_96.png differ diff --git a/lib/assets/images/203_97.png b/lib/assets/images/203_97.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/203_97.png differ diff --git a/lib/assets/images/203_98.png b/lib/assets/images/203_98.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/203_98.png differ diff --git a/lib/assets/images/203_99.png b/lib/assets/images/203_99.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/203_99.png differ diff --git a/lib/assets/images/218_277.png b/lib/assets/images/218_277.png new file mode 100644 index 0000000..4ef2538 Binary files /dev/null and b/lib/assets/images/218_277.png differ diff --git a/lib/assets/images/218_86.png b/lib/assets/images/218_86.png new file mode 100644 index 0000000..fdc770e Binary files /dev/null and b/lib/assets/images/218_86.png differ diff --git a/lib/assets/images/224_307.png b/lib/assets/images/224_307.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/224_307.png differ diff --git a/lib/assets/images/224_308.png b/lib/assets/images/224_308.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/224_308.png differ diff --git a/lib/assets/images/224_310.png b/lib/assets/images/224_310.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/224_310.png differ diff --git a/lib/assets/images/224_312.png b/lib/assets/images/224_312.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/224_312.png differ diff --git a/lib/assets/images/224_313.png b/lib/assets/images/224_313.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/224_313.png differ diff --git a/lib/assets/images/224_314.png b/lib/assets/images/224_314.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/224_314.png differ diff --git a/lib/assets/images/224_323.png b/lib/assets/images/224_323.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/224_323.png differ diff --git a/lib/assets/images/224_330.png b/lib/assets/images/224_330.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/224_330.png differ diff --git a/lib/assets/images/224_345.png b/lib/assets/images/224_345.png new file mode 100644 index 0000000..e8759b2 Binary files /dev/null and b/lib/assets/images/224_345.png differ diff --git a/lib/assets/images/224_346.png b/lib/assets/images/224_346.png new file mode 100644 index 0000000..96db958 Binary files /dev/null and b/lib/assets/images/224_346.png differ diff --git a/lib/assets/images/228_355.png b/lib/assets/images/228_355.png new file mode 100644 index 0000000..0607957 Binary files /dev/null and b/lib/assets/images/228_355.png differ diff --git a/lib/assets/images/228_359.png b/lib/assets/images/228_359.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/228_359.png differ diff --git a/lib/assets/images/228_360.png b/lib/assets/images/228_360.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/228_360.png differ diff --git a/lib/assets/images/228_362.png b/lib/assets/images/228_362.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/228_362.png differ diff --git a/lib/assets/images/228_363.png b/lib/assets/images/228_363.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/228_363.png differ diff --git a/lib/assets/images/228_364.png b/lib/assets/images/228_364.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/228_364.png differ diff --git a/lib/assets/images/228_365.png b/lib/assets/images/228_365.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/228_365.png differ diff --git a/lib/assets/images/228_366.png b/lib/assets/images/228_366.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/228_366.png differ diff --git a/lib/assets/images/228_370.png b/lib/assets/images/228_370.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/228_370.png differ diff --git a/lib/assets/images/228_375.png b/lib/assets/images/228_375.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/228_375.png differ diff --git a/lib/assets/images/228_381.png b/lib/assets/images/228_381.png new file mode 100644 index 0000000..cf13b1e Binary files /dev/null and b/lib/assets/images/228_381.png differ diff --git a/lib/assets/images/228_382.png b/lib/assets/images/228_382.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/228_382.png differ diff --git a/lib/assets/images/228_388.png b/lib/assets/images/228_388.png new file mode 100644 index 0000000..81da172 Binary files /dev/null and b/lib/assets/images/228_388.png differ diff --git a/lib/assets/images/228_392.png b/lib/assets/images/228_392.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/228_392.png differ diff --git a/lib/assets/images/228_404.png b/lib/assets/images/228_404.png new file mode 100644 index 0000000..c10a287 Binary files /dev/null and b/lib/assets/images/228_404.png differ diff --git a/lib/assets/images/229_435.png b/lib/assets/images/229_435.png new file mode 100644 index 0000000..e308546 Binary files /dev/null and b/lib/assets/images/229_435.png differ diff --git a/lib/assets/images/229_626.png b/lib/assets/images/229_626.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/229_626.png differ diff --git a/lib/assets/images/229_649.png b/lib/assets/images/229_649.png new file mode 100644 index 0000000..349f389 Binary files /dev/null and b/lib/assets/images/229_649.png differ diff --git a/lib/assets/images/22_10.png b/lib/assets/images/22_10.png new file mode 100644 index 0000000..ab7319d Binary files /dev/null and b/lib/assets/images/22_10.png differ diff --git a/lib/assets/images/22_3.png b/lib/assets/images/22_3.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/22_3.png differ diff --git a/lib/assets/images/22_4.png b/lib/assets/images/22_4.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/22_4.png differ diff --git a/lib/assets/images/24_16.png b/lib/assets/images/24_16.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/24_16.png differ diff --git a/lib/assets/images/24_22.png b/lib/assets/images/24_22.png new file mode 100644 index 0000000..76a8acb Binary files /dev/null and b/lib/assets/images/24_22.png differ diff --git a/lib/assets/images/24_32.png b/lib/assets/images/24_32.png new file mode 100644 index 0000000..cd0aff6 Binary files /dev/null and b/lib/assets/images/24_32.png differ diff --git a/lib/assets/images/24_34.png b/lib/assets/images/24_34.png new file mode 100644 index 0000000..2349e62 Binary files /dev/null and b/lib/assets/images/24_34.png differ diff --git a/lib/assets/images/253_814.png b/lib/assets/images/253_814.png new file mode 100644 index 0000000..ef46a37 Binary files /dev/null and b/lib/assets/images/253_814.png differ diff --git a/lib/assets/images/253_817.png b/lib/assets/images/253_817.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/253_817.png differ diff --git a/lib/assets/images/253_818.png b/lib/assets/images/253_818.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/253_818.png differ diff --git a/lib/assets/images/253_820.png b/lib/assets/images/253_820.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/253_820.png differ diff --git a/lib/assets/images/253_821.png b/lib/assets/images/253_821.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/253_821.png differ diff --git a/lib/assets/images/253_822.png b/lib/assets/images/253_822.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/253_822.png differ diff --git a/lib/assets/images/253_823.png b/lib/assets/images/253_823.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/253_823.png differ diff --git a/lib/assets/images/253_824.png b/lib/assets/images/253_824.png new file mode 100644 index 0000000..cae35e5 Binary files /dev/null and b/lib/assets/images/253_824.png differ diff --git a/lib/assets/images/253_828.png b/lib/assets/images/253_828.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/253_828.png differ diff --git a/lib/assets/images/253_833.png b/lib/assets/images/253_833.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/253_833.png differ diff --git a/lib/assets/images/253_839.png b/lib/assets/images/253_839.png new file mode 100644 index 0000000..f68fa6f Binary files /dev/null and b/lib/assets/images/253_839.png differ diff --git a/lib/assets/images/253_840.png b/lib/assets/images/253_840.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/253_840.png differ diff --git a/lib/assets/images/253_855.png b/lib/assets/images/253_855.png new file mode 100644 index 0000000..16b924c Binary files /dev/null and b/lib/assets/images/253_855.png differ diff --git a/lib/assets/images/253_856.png b/lib/assets/images/253_856.png new file mode 100644 index 0000000..96db958 Binary files /dev/null and b/lib/assets/images/253_856.png differ diff --git a/lib/assets/images/253_861.png b/lib/assets/images/253_861.png new file mode 100644 index 0000000..4ef2538 Binary files /dev/null and b/lib/assets/images/253_861.png differ diff --git a/lib/assets/images/253_880.png b/lib/assets/images/253_880.png new file mode 100644 index 0000000..d17593d Binary files /dev/null and b/lib/assets/images/253_880.png differ diff --git a/lib/assets/images/26_17.png b/lib/assets/images/26_17.png new file mode 100644 index 0000000..fbc93dc Binary files /dev/null and b/lib/assets/images/26_17.png differ diff --git a/lib/assets/images/26_4.png b/lib/assets/images/26_4.png new file mode 100644 index 0000000..235f256 Binary files /dev/null and b/lib/assets/images/26_4.png differ diff --git a/lib/assets/images/279_898.png b/lib/assets/images/279_898.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/279_898.png differ diff --git a/lib/assets/images/279_899.png b/lib/assets/images/279_899.png new file mode 100644 index 0000000..aae9946 Binary files /dev/null and b/lib/assets/images/279_899.png differ diff --git a/lib/assets/images/279_902.png b/lib/assets/images/279_902.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/279_902.png differ diff --git a/lib/assets/images/279_905.png b/lib/assets/images/279_905.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/279_905.png differ diff --git a/lib/assets/images/279_908.png b/lib/assets/images/279_908.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/279_908.png differ diff --git a/lib/assets/images/279_911.png b/lib/assets/images/279_911.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/279_911.png differ diff --git a/lib/assets/images/279_915.png b/lib/assets/images/279_915.png new file mode 100644 index 0000000..035cb03 Binary files /dev/null and b/lib/assets/images/279_915.png differ diff --git a/lib/assets/images/279_916.png b/lib/assets/images/279_916.png new file mode 100644 index 0000000..16f474a Binary files /dev/null and b/lib/assets/images/279_916.png differ diff --git a/lib/assets/images/281_925.png b/lib/assets/images/281_925.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/281_925.png differ diff --git a/lib/assets/images/281_926.png b/lib/assets/images/281_926.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/281_926.png differ diff --git a/lib/assets/images/281_993.png b/lib/assets/images/281_993.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/281_993.png differ diff --git a/lib/assets/images/28_103.png b/lib/assets/images/28_103.png new file mode 100644 index 0000000..b74570f Binary files /dev/null and b/lib/assets/images/28_103.png differ diff --git a/lib/assets/images/28_114.png b/lib/assets/images/28_114.png new file mode 100644 index 0000000..9a6d2ad Binary files /dev/null and b/lib/assets/images/28_114.png differ diff --git a/lib/assets/images/28_139.png b/lib/assets/images/28_139.png new file mode 100644 index 0000000..6dcad32 Binary files /dev/null and b/lib/assets/images/28_139.png differ diff --git a/lib/assets/images/28_142.png b/lib/assets/images/28_142.png new file mode 100644 index 0000000..e612e58 Binary files /dev/null and b/lib/assets/images/28_142.png differ diff --git a/lib/assets/images/28_177.png b/lib/assets/images/28_177.png new file mode 100644 index 0000000..feccc9d Binary files /dev/null and b/lib/assets/images/28_177.png differ diff --git a/lib/assets/images/28_181.png b/lib/assets/images/28_181.png new file mode 100644 index 0000000..e612e58 Binary files /dev/null and b/lib/assets/images/28_181.png differ diff --git a/lib/assets/images/28_185.png b/lib/assets/images/28_185.png new file mode 100644 index 0000000..eb738e7 Binary files /dev/null and b/lib/assets/images/28_185.png differ diff --git a/lib/assets/images/28_187.png b/lib/assets/images/28_187.png new file mode 100644 index 0000000..191d994 Binary files /dev/null and b/lib/assets/images/28_187.png differ diff --git a/lib/assets/images/28_189.png b/lib/assets/images/28_189.png new file mode 100644 index 0000000..191d994 Binary files /dev/null and b/lib/assets/images/28_189.png differ diff --git a/lib/assets/images/28_206.png b/lib/assets/images/28_206.png new file mode 100644 index 0000000..782015c Binary files /dev/null and b/lib/assets/images/28_206.png differ diff --git a/lib/assets/images/28_207.png b/lib/assets/images/28_207.png new file mode 100644 index 0000000..9b90b5b Binary files /dev/null and b/lib/assets/images/28_207.png differ diff --git a/lib/assets/images/28_21.png b/lib/assets/images/28_21.png new file mode 100644 index 0000000..6dcad32 Binary files /dev/null and b/lib/assets/images/28_21.png differ diff --git a/lib/assets/images/28_216.png b/lib/assets/images/28_216.png new file mode 100644 index 0000000..191d994 Binary files /dev/null and b/lib/assets/images/28_216.png differ diff --git a/lib/assets/images/28_217.png b/lib/assets/images/28_217.png new file mode 100644 index 0000000..72d36b6 Binary files /dev/null and b/lib/assets/images/28_217.png differ diff --git a/lib/assets/images/28_218.png b/lib/assets/images/28_218.png new file mode 100644 index 0000000..72d36b6 Binary files /dev/null and b/lib/assets/images/28_218.png differ diff --git a/lib/assets/images/28_219.png b/lib/assets/images/28_219.png new file mode 100644 index 0000000..510387f Binary files /dev/null and b/lib/assets/images/28_219.png differ diff --git a/lib/assets/images/28_225.png b/lib/assets/images/28_225.png new file mode 100644 index 0000000..191d994 Binary files /dev/null and b/lib/assets/images/28_225.png differ diff --git a/lib/assets/images/28_232.png b/lib/assets/images/28_232.png new file mode 100644 index 0000000..72032e0 Binary files /dev/null and b/lib/assets/images/28_232.png differ diff --git a/lib/assets/images/28_233.png b/lib/assets/images/28_233.png new file mode 100644 index 0000000..3de3930 Binary files /dev/null and b/lib/assets/images/28_233.png differ diff --git a/lib/assets/images/28_234.png b/lib/assets/images/28_234.png new file mode 100644 index 0000000..4738da2 Binary files /dev/null and b/lib/assets/images/28_234.png differ diff --git a/lib/assets/images/28_237.png b/lib/assets/images/28_237.png new file mode 100644 index 0000000..ccf3016 Binary files /dev/null and b/lib/assets/images/28_237.png differ diff --git a/lib/assets/images/28_3.png b/lib/assets/images/28_3.png new file mode 100644 index 0000000..c9d3300 Binary files /dev/null and b/lib/assets/images/28_3.png differ diff --git a/lib/assets/images/28_44.png b/lib/assets/images/28_44.png new file mode 100644 index 0000000..e612e58 Binary files /dev/null and b/lib/assets/images/28_44.png differ diff --git a/lib/assets/images/28_48.png b/lib/assets/images/28_48.png new file mode 100644 index 0000000..950c92a Binary files /dev/null and b/lib/assets/images/28_48.png differ diff --git a/lib/assets/images/28_5.png b/lib/assets/images/28_5.png new file mode 100644 index 0000000..2185101 Binary files /dev/null and b/lib/assets/images/28_5.png differ diff --git a/lib/assets/images/28_70.png b/lib/assets/images/28_70.png new file mode 100644 index 0000000..0e0a787 Binary files /dev/null and b/lib/assets/images/28_70.png differ diff --git a/lib/assets/images/28_81.png b/lib/assets/images/28_81.png new file mode 100644 index 0000000..df95308 Binary files /dev/null and b/lib/assets/images/28_81.png differ diff --git a/lib/assets/images/2_27.png b/lib/assets/images/2_27.png new file mode 100644 index 0000000..d304d18 Binary files /dev/null and b/lib/assets/images/2_27.png differ diff --git a/lib/assets/images/2_36.png b/lib/assets/images/2_36.png new file mode 100644 index 0000000..b020183 Binary files /dev/null and b/lib/assets/images/2_36.png differ diff --git a/lib/assets/images/308_180.png b/lib/assets/images/308_180.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/308_180.png differ diff --git a/lib/assets/images/308_185.png b/lib/assets/images/308_185.png new file mode 100644 index 0000000..c309ad9 Binary files /dev/null and b/lib/assets/images/308_185.png differ diff --git a/lib/assets/images/308_187.png b/lib/assets/images/308_187.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/308_187.png differ diff --git a/lib/assets/images/308_188.png b/lib/assets/images/308_188.png new file mode 100644 index 0000000..7284fe7 Binary files /dev/null and b/lib/assets/images/308_188.png differ diff --git a/lib/assets/images/308_195.png b/lib/assets/images/308_195.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/308_195.png differ diff --git a/lib/assets/images/308_386.png b/lib/assets/images/308_386.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/308_386.png differ diff --git a/lib/assets/images/308_387.png b/lib/assets/images/308_387.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/308_387.png differ diff --git a/lib/assets/images/308_388.png b/lib/assets/images/308_388.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/308_388.png differ diff --git a/lib/assets/images/308_390.png b/lib/assets/images/308_390.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/308_390.png differ diff --git a/lib/assets/images/308_391.png b/lib/assets/images/308_391.png new file mode 100644 index 0000000..7347282 Binary files /dev/null and b/lib/assets/images/308_391.png differ diff --git a/lib/assets/images/308_395.png b/lib/assets/images/308_395.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/308_395.png differ diff --git a/lib/assets/images/308_429.png b/lib/assets/images/308_429.png new file mode 100644 index 0000000..0b8d1ba Binary files /dev/null and b/lib/assets/images/308_429.png differ diff --git a/lib/assets/images/308_431.png b/lib/assets/images/308_431.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/308_431.png differ diff --git a/lib/assets/images/33_8.png b/lib/assets/images/33_8.png new file mode 100644 index 0000000..349f389 Binary files /dev/null and b/lib/assets/images/33_8.png differ diff --git a/lib/assets/images/41_2.png b/lib/assets/images/41_2.png new file mode 100644 index 0000000..191d994 Binary files /dev/null and b/lib/assets/images/41_2.png differ diff --git a/lib/assets/images/432_133.png b/lib/assets/images/432_133.png new file mode 100644 index 0000000..f147b31 Binary files /dev/null and b/lib/assets/images/432_133.png differ diff --git a/lib/assets/images/432_136.png b/lib/assets/images/432_136.png new file mode 100644 index 0000000..2e77bee Binary files /dev/null and b/lib/assets/images/432_136.png differ diff --git a/lib/assets/images/438_112.png b/lib/assets/images/438_112.png new file mode 100644 index 0000000..e2c9f8c Binary files /dev/null and b/lib/assets/images/438_112.png differ diff --git a/lib/assets/images/441_110.png b/lib/assets/images/441_110.png new file mode 100644 index 0000000..1c134d7 Binary files /dev/null and b/lib/assets/images/441_110.png differ diff --git a/lib/assets/images/441_111.png b/lib/assets/images/441_111.png new file mode 100644 index 0000000..9b0d5a3 Binary files /dev/null and b/lib/assets/images/441_111.png differ diff --git a/lib/assets/images/441_115.png b/lib/assets/images/441_115.png new file mode 100644 index 0000000..c6df308 Binary files /dev/null and b/lib/assets/images/441_115.png differ diff --git a/lib/assets/images/441_116.png b/lib/assets/images/441_116.png new file mode 100644 index 0000000..c6df308 Binary files /dev/null and b/lib/assets/images/441_116.png differ diff --git a/lib/assets/images/443_117.png b/lib/assets/images/443_117.png new file mode 100644 index 0000000..7933637 Binary files /dev/null and b/lib/assets/images/443_117.png differ diff --git a/lib/assets/images/443_121.png b/lib/assets/images/443_121.png new file mode 100644 index 0000000..a62c7d4 Binary files /dev/null and b/lib/assets/images/443_121.png differ diff --git a/lib/assets/images/443_122.png b/lib/assets/images/443_122.png new file mode 100644 index 0000000..373e117 Binary files /dev/null and b/lib/assets/images/443_122.png differ diff --git a/lib/assets/images/447_118.png b/lib/assets/images/447_118.png new file mode 100644 index 0000000..1c23445 Binary files /dev/null and b/lib/assets/images/447_118.png differ diff --git a/lib/assets/images/447_122.png b/lib/assets/images/447_122.png new file mode 100644 index 0000000..700c8cb Binary files /dev/null and b/lib/assets/images/447_122.png differ diff --git a/lib/assets/images/447_123.png b/lib/assets/images/447_123.png new file mode 100644 index 0000000..3b5af3f Binary files /dev/null and b/lib/assets/images/447_123.png differ diff --git a/lib/assets/images/447_125.png b/lib/assets/images/447_125.png new file mode 100644 index 0000000..9441d4c Binary files /dev/null and b/lib/assets/images/447_125.png differ diff --git a/lib/assets/images/450_129.png b/lib/assets/images/450_129.png new file mode 100644 index 0000000..ce422f2 Binary files /dev/null and b/lib/assets/images/450_129.png differ diff --git a/lib/assets/images/450_160.png b/lib/assets/images/450_160.png new file mode 100644 index 0000000..a72d114 Binary files /dev/null and b/lib/assets/images/450_160.png differ diff --git a/lib/assets/images/450_167.png b/lib/assets/images/450_167.png new file mode 100644 index 0000000..239f99e Binary files /dev/null and b/lib/assets/images/450_167.png differ diff --git a/lib/assets/images/452_116.png b/lib/assets/images/452_116.png new file mode 100644 index 0000000..e23780e Binary files /dev/null and b/lib/assets/images/452_116.png differ diff --git a/lib/assets/images/454_121.png b/lib/assets/images/454_121.png new file mode 100644 index 0000000..c115120 Binary files /dev/null and b/lib/assets/images/454_121.png differ diff --git a/lib/assets/images/454_122.png b/lib/assets/images/454_122.png new file mode 100644 index 0000000..f4863e7 Binary files /dev/null and b/lib/assets/images/454_122.png differ diff --git a/lib/assets/images/454_123.png b/lib/assets/images/454_123.png new file mode 100644 index 0000000..3be5b39 Binary files /dev/null and b/lib/assets/images/454_123.png differ diff --git a/lib/assets/images/459_128.png b/lib/assets/images/459_128.png new file mode 100644 index 0000000..73bb225 Binary files /dev/null and b/lib/assets/images/459_128.png differ diff --git a/lib/assets/images/459_131.png b/lib/assets/images/459_131.png new file mode 100644 index 0000000..2d29513 Binary files /dev/null and b/lib/assets/images/459_131.png differ diff --git a/lib/assets/images/461_186.png b/lib/assets/images/461_186.png new file mode 100644 index 0000000..45aa8ae Binary files /dev/null and b/lib/assets/images/461_186.png differ diff --git a/lib/assets/images/479_1000.png b/lib/assets/images/479_1000.png new file mode 100644 index 0000000..373e117 Binary files /dev/null and b/lib/assets/images/479_1000.png differ diff --git a/lib/assets/images/479_1002.png b/lib/assets/images/479_1002.png new file mode 100644 index 0000000..9441d4c Binary files /dev/null and b/lib/assets/images/479_1002.png differ diff --git a/lib/assets/images/479_1003.png b/lib/assets/images/479_1003.png new file mode 100644 index 0000000..1c23445 Binary files /dev/null and b/lib/assets/images/479_1003.png differ diff --git a/lib/assets/images/479_1007.png b/lib/assets/images/479_1007.png new file mode 100644 index 0000000..700c8cb Binary files /dev/null and b/lib/assets/images/479_1007.png differ diff --git a/lib/assets/images/479_1008.png b/lib/assets/images/479_1008.png new file mode 100644 index 0000000..3b5af3f Binary files /dev/null and b/lib/assets/images/479_1008.png differ diff --git a/lib/assets/images/479_1013.png b/lib/assets/images/479_1013.png new file mode 100644 index 0000000..ef46a37 Binary files /dev/null and b/lib/assets/images/479_1013.png differ diff --git a/lib/assets/images/479_1014.png b/lib/assets/images/479_1014.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/479_1014.png differ diff --git a/lib/assets/images/479_1016.png b/lib/assets/images/479_1016.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/479_1016.png differ diff --git a/lib/assets/images/479_1017.png b/lib/assets/images/479_1017.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/479_1017.png differ diff --git a/lib/assets/images/479_1019.png b/lib/assets/images/479_1019.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_1019.png differ diff --git a/lib/assets/images/479_1020.png b/lib/assets/images/479_1020.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_1020.png differ diff --git a/lib/assets/images/479_1021.png b/lib/assets/images/479_1021.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_1021.png differ diff --git a/lib/assets/images/479_1022.png b/lib/assets/images/479_1022.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/479_1022.png differ diff --git a/lib/assets/images/479_1023.png b/lib/assets/images/479_1023.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/479_1023.png differ diff --git a/lib/assets/images/479_1027.png b/lib/assets/images/479_1027.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/479_1027.png differ diff --git a/lib/assets/images/479_1032.png b/lib/assets/images/479_1032.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_1032.png differ diff --git a/lib/assets/images/479_1038.png b/lib/assets/images/479_1038.png new file mode 100644 index 0000000..cf13b1e Binary files /dev/null and b/lib/assets/images/479_1038.png differ diff --git a/lib/assets/images/479_1039.png b/lib/assets/images/479_1039.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_1039.png differ diff --git a/lib/assets/images/479_1048.png b/lib/assets/images/479_1048.png new file mode 100644 index 0000000..e8759b2 Binary files /dev/null and b/lib/assets/images/479_1048.png differ diff --git a/lib/assets/images/479_1049.png b/lib/assets/images/479_1049.png new file mode 100644 index 0000000..96db958 Binary files /dev/null and b/lib/assets/images/479_1049.png differ diff --git a/lib/assets/images/479_1052.png b/lib/assets/images/479_1052.png new file mode 100644 index 0000000..4ef2538 Binary files /dev/null and b/lib/assets/images/479_1052.png differ diff --git a/lib/assets/images/479_1054.png b/lib/assets/images/479_1054.png new file mode 100644 index 0000000..d17593d Binary files /dev/null and b/lib/assets/images/479_1054.png differ diff --git a/lib/assets/images/479_1065.png b/lib/assets/images/479_1065.png new file mode 100644 index 0000000..c115120 Binary files /dev/null and b/lib/assets/images/479_1065.png differ diff --git a/lib/assets/images/479_1066.png b/lib/assets/images/479_1066.png new file mode 100644 index 0000000..f4863e7 Binary files /dev/null and b/lib/assets/images/479_1066.png differ diff --git a/lib/assets/images/479_1067.png b/lib/assets/images/479_1067.png new file mode 100644 index 0000000..3be5b39 Binary files /dev/null and b/lib/assets/images/479_1067.png differ diff --git a/lib/assets/images/479_117.png b/lib/assets/images/479_117.png new file mode 100644 index 0000000..e46bcc9 Binary files /dev/null and b/lib/assets/images/479_117.png differ diff --git a/lib/assets/images/479_124.png b/lib/assets/images/479_124.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/479_124.png differ diff --git a/lib/assets/images/479_125.png b/lib/assets/images/479_125.png new file mode 100644 index 0000000..5d0b89a Binary files /dev/null and b/lib/assets/images/479_125.png differ diff --git a/lib/assets/images/479_169.png b/lib/assets/images/479_169.png new file mode 100644 index 0000000..490d560 Binary files /dev/null and b/lib/assets/images/479_169.png differ diff --git a/lib/assets/images/479_179.png b/lib/assets/images/479_179.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/479_179.png differ diff --git a/lib/assets/images/479_181.png b/lib/assets/images/479_181.png new file mode 100644 index 0000000..436efb2 Binary files /dev/null and b/lib/assets/images/479_181.png differ diff --git a/lib/assets/images/479_182.png b/lib/assets/images/479_182.png new file mode 100644 index 0000000..04cc712 Binary files /dev/null and b/lib/assets/images/479_182.png differ diff --git a/lib/assets/images/479_183.png b/lib/assets/images/479_183.png new file mode 100644 index 0000000..313c64c Binary files /dev/null and b/lib/assets/images/479_183.png differ diff --git a/lib/assets/images/479_184.png b/lib/assets/images/479_184.png new file mode 100644 index 0000000..7e877c4 Binary files /dev/null and b/lib/assets/images/479_184.png differ diff --git a/lib/assets/images/479_185.png b/lib/assets/images/479_185.png new file mode 100644 index 0000000..c6f9fe0 Binary files /dev/null and b/lib/assets/images/479_185.png differ diff --git a/lib/assets/images/479_186.png b/lib/assets/images/479_186.png new file mode 100644 index 0000000..b10d66b Binary files /dev/null and b/lib/assets/images/479_186.png differ diff --git a/lib/assets/images/479_187.png b/lib/assets/images/479_187.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_187.png differ diff --git a/lib/assets/images/479_188.png b/lib/assets/images/479_188.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_188.png differ diff --git a/lib/assets/images/479_189.png b/lib/assets/images/479_189.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_189.png differ diff --git a/lib/assets/images/479_190.png b/lib/assets/images/479_190.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_190.png differ diff --git a/lib/assets/images/479_191.png b/lib/assets/images/479_191.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_191.png differ diff --git a/lib/assets/images/479_192.png b/lib/assets/images/479_192.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_192.png differ diff --git a/lib/assets/images/479_193.png b/lib/assets/images/479_193.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_193.png differ diff --git a/lib/assets/images/479_194.png b/lib/assets/images/479_194.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_194.png differ diff --git a/lib/assets/images/479_195.png b/lib/assets/images/479_195.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_195.png differ diff --git a/lib/assets/images/479_196.png b/lib/assets/images/479_196.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_196.png differ diff --git a/lib/assets/images/479_197.png b/lib/assets/images/479_197.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_197.png differ diff --git a/lib/assets/images/479_198.png b/lib/assets/images/479_198.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_198.png differ diff --git a/lib/assets/images/479_199.png b/lib/assets/images/479_199.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_199.png differ diff --git a/lib/assets/images/479_200.png b/lib/assets/images/479_200.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_200.png differ diff --git a/lib/assets/images/479_201.png b/lib/assets/images/479_201.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_201.png differ diff --git a/lib/assets/images/479_202.png b/lib/assets/images/479_202.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_202.png differ diff --git a/lib/assets/images/479_203.png b/lib/assets/images/479_203.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_203.png differ diff --git a/lib/assets/images/479_204.png b/lib/assets/images/479_204.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_204.png differ diff --git a/lib/assets/images/479_205.png b/lib/assets/images/479_205.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_205.png differ diff --git a/lib/assets/images/479_206.png b/lib/assets/images/479_206.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_206.png differ diff --git a/lib/assets/images/479_207.png b/lib/assets/images/479_207.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_207.png differ diff --git a/lib/assets/images/479_208.png b/lib/assets/images/479_208.png new file mode 100644 index 0000000..8928786 Binary files /dev/null and b/lib/assets/images/479_208.png differ diff --git a/lib/assets/images/479_209.png b/lib/assets/images/479_209.png new file mode 100644 index 0000000..48f7626 Binary files /dev/null and b/lib/assets/images/479_209.png differ diff --git a/lib/assets/images/479_210.png b/lib/assets/images/479_210.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_210.png differ diff --git a/lib/assets/images/479_211.png b/lib/assets/images/479_211.png new file mode 100644 index 0000000..0146e30 Binary files /dev/null and b/lib/assets/images/479_211.png differ diff --git a/lib/assets/images/479_212.png b/lib/assets/images/479_212.png new file mode 100644 index 0000000..e301273 Binary files /dev/null and b/lib/assets/images/479_212.png differ diff --git a/lib/assets/images/479_213.png b/lib/assets/images/479_213.png new file mode 100644 index 0000000..ee3ce0f Binary files /dev/null and b/lib/assets/images/479_213.png differ diff --git a/lib/assets/images/479_214.png b/lib/assets/images/479_214.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_214.png differ diff --git a/lib/assets/images/479_215.png b/lib/assets/images/479_215.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_215.png differ diff --git a/lib/assets/images/479_216.png b/lib/assets/images/479_216.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_216.png differ diff --git a/lib/assets/images/479_217.png b/lib/assets/images/479_217.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_217.png differ diff --git a/lib/assets/images/479_218.png b/lib/assets/images/479_218.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_218.png differ diff --git a/lib/assets/images/479_219.png b/lib/assets/images/479_219.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_219.png differ diff --git a/lib/assets/images/479_220.png b/lib/assets/images/479_220.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_220.png differ diff --git a/lib/assets/images/479_221.png b/lib/assets/images/479_221.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_221.png differ diff --git a/lib/assets/images/479_222.png b/lib/assets/images/479_222.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_222.png differ diff --git a/lib/assets/images/479_223.png b/lib/assets/images/479_223.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_223.png differ diff --git a/lib/assets/images/479_224.png b/lib/assets/images/479_224.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_224.png differ diff --git a/lib/assets/images/479_225.png b/lib/assets/images/479_225.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/479_225.png differ diff --git a/lib/assets/images/479_226.png b/lib/assets/images/479_226.png new file mode 100644 index 0000000..7b6353b Binary files /dev/null and b/lib/assets/images/479_226.png differ diff --git a/lib/assets/images/479_227.png b/lib/assets/images/479_227.png new file mode 100644 index 0000000..797e755 Binary files /dev/null and b/lib/assets/images/479_227.png differ diff --git a/lib/assets/images/479_228.png b/lib/assets/images/479_228.png new file mode 100644 index 0000000..d3bf18a Binary files /dev/null and b/lib/assets/images/479_228.png differ diff --git a/lib/assets/images/479_229.png b/lib/assets/images/479_229.png new file mode 100644 index 0000000..ba7274d Binary files /dev/null and b/lib/assets/images/479_229.png differ diff --git a/lib/assets/images/479_230.png b/lib/assets/images/479_230.png new file mode 100644 index 0000000..4738d43 Binary files /dev/null and b/lib/assets/images/479_230.png differ diff --git a/lib/assets/images/479_231.png b/lib/assets/images/479_231.png new file mode 100644 index 0000000..821dbb8 Binary files /dev/null and b/lib/assets/images/479_231.png differ diff --git a/lib/assets/images/479_232.png b/lib/assets/images/479_232.png new file mode 100644 index 0000000..1f9502d Binary files /dev/null and b/lib/assets/images/479_232.png differ diff --git a/lib/assets/images/479_233.png b/lib/assets/images/479_233.png new file mode 100644 index 0000000..3fbdcac Binary files /dev/null and b/lib/assets/images/479_233.png differ diff --git a/lib/assets/images/479_234.png b/lib/assets/images/479_234.png new file mode 100644 index 0000000..a782049 Binary files /dev/null and b/lib/assets/images/479_234.png differ diff --git a/lib/assets/images/479_235.png b/lib/assets/images/479_235.png new file mode 100644 index 0000000..b9a3895 Binary files /dev/null and b/lib/assets/images/479_235.png differ diff --git a/lib/assets/images/479_236.png b/lib/assets/images/479_236.png new file mode 100644 index 0000000..e583783 Binary files /dev/null and b/lib/assets/images/479_236.png differ diff --git a/lib/assets/images/479_237.png b/lib/assets/images/479_237.png new file mode 100644 index 0000000..10547f4 Binary files /dev/null and b/lib/assets/images/479_237.png differ diff --git a/lib/assets/images/479_238.png b/lib/assets/images/479_238.png new file mode 100644 index 0000000..ff274ba Binary files /dev/null and b/lib/assets/images/479_238.png differ diff --git a/lib/assets/images/479_239.png b/lib/assets/images/479_239.png new file mode 100644 index 0000000..423446d Binary files /dev/null and b/lib/assets/images/479_239.png differ diff --git a/lib/assets/images/479_240.png b/lib/assets/images/479_240.png new file mode 100644 index 0000000..9029cb6 Binary files /dev/null and b/lib/assets/images/479_240.png differ diff --git a/lib/assets/images/479_241.png b/lib/assets/images/479_241.png new file mode 100644 index 0000000..51a60aa Binary files /dev/null and b/lib/assets/images/479_241.png differ diff --git a/lib/assets/images/479_242.png b/lib/assets/images/479_242.png new file mode 100644 index 0000000..521828d Binary files /dev/null and b/lib/assets/images/479_242.png differ diff --git a/lib/assets/images/479_243.png b/lib/assets/images/479_243.png new file mode 100644 index 0000000..1e1c4a1 Binary files /dev/null and b/lib/assets/images/479_243.png differ diff --git a/lib/assets/images/479_244.png b/lib/assets/images/479_244.png new file mode 100644 index 0000000..32d15a4 Binary files /dev/null and b/lib/assets/images/479_244.png differ diff --git a/lib/assets/images/479_245.png b/lib/assets/images/479_245.png new file mode 100644 index 0000000..565bd61 Binary files /dev/null and b/lib/assets/images/479_245.png differ diff --git a/lib/assets/images/479_246.png b/lib/assets/images/479_246.png new file mode 100644 index 0000000..8c2940c Binary files /dev/null and b/lib/assets/images/479_246.png differ diff --git a/lib/assets/images/479_247.png b/lib/assets/images/479_247.png new file mode 100644 index 0000000..feee2a0 Binary files /dev/null and b/lib/assets/images/479_247.png differ diff --git a/lib/assets/images/479_248.png b/lib/assets/images/479_248.png new file mode 100644 index 0000000..0301c95 Binary files /dev/null and b/lib/assets/images/479_248.png differ diff --git a/lib/assets/images/479_249.png b/lib/assets/images/479_249.png new file mode 100644 index 0000000..533d57d Binary files /dev/null and b/lib/assets/images/479_249.png differ diff --git a/lib/assets/images/479_264.png b/lib/assets/images/479_264.png new file mode 100644 index 0000000..1345c9b Binary files /dev/null and b/lib/assets/images/479_264.png differ diff --git a/lib/assets/images/479_270.png b/lib/assets/images/479_270.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/479_270.png differ diff --git a/lib/assets/images/479_271.png b/lib/assets/images/479_271.png new file mode 100644 index 0000000..daafe22 Binary files /dev/null and b/lib/assets/images/479_271.png differ diff --git a/lib/assets/images/479_306.png b/lib/assets/images/479_306.png new file mode 100644 index 0000000..7fb1c0c Binary files /dev/null and b/lib/assets/images/479_306.png differ diff --git a/lib/assets/images/479_309.png b/lib/assets/images/479_309.png new file mode 100644 index 0000000..15de399 Binary files /dev/null and b/lib/assets/images/479_309.png differ diff --git a/lib/assets/images/479_340.png b/lib/assets/images/479_340.png new file mode 100644 index 0000000..21644a7 Binary files /dev/null and b/lib/assets/images/479_340.png differ diff --git a/lib/assets/images/479_349.png b/lib/assets/images/479_349.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/479_349.png differ diff --git a/lib/assets/images/479_354.png b/lib/assets/images/479_354.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/479_354.png differ diff --git a/lib/assets/images/479_361.png b/lib/assets/images/479_361.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/479_361.png differ diff --git a/lib/assets/images/479_363.png b/lib/assets/images/479_363.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/479_363.png differ diff --git a/lib/assets/images/479_365.png b/lib/assets/images/479_365.png new file mode 100644 index 0000000..84cea7c Binary files /dev/null and b/lib/assets/images/479_365.png differ diff --git a/lib/assets/images/479_371.png b/lib/assets/images/479_371.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/479_371.png differ diff --git a/lib/assets/images/479_372.png b/lib/assets/images/479_372.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/479_372.png differ diff --git a/lib/assets/images/479_373.png b/lib/assets/images/479_373.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/479_373.png differ diff --git a/lib/assets/images/479_374.png b/lib/assets/images/479_374.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/479_374.png differ diff --git a/lib/assets/images/479_417.png b/lib/assets/images/479_417.png new file mode 100644 index 0000000..f50a44a Binary files /dev/null and b/lib/assets/images/479_417.png differ diff --git a/lib/assets/images/479_420.png b/lib/assets/images/479_420.png new file mode 100644 index 0000000..c312329 Binary files /dev/null and b/lib/assets/images/479_420.png differ diff --git a/lib/assets/images/479_423.png b/lib/assets/images/479_423.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/479_423.png differ diff --git a/lib/assets/images/479_426.png b/lib/assets/images/479_426.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/479_426.png differ diff --git a/lib/assets/images/479_429.png b/lib/assets/images/479_429.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/479_429.png differ diff --git a/lib/assets/images/479_432.png b/lib/assets/images/479_432.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/479_432.png differ diff --git a/lib/assets/images/479_442.png b/lib/assets/images/479_442.png new file mode 100644 index 0000000..c9e2fe8 Binary files /dev/null and b/lib/assets/images/479_442.png differ diff --git a/lib/assets/images/479_443.png b/lib/assets/images/479_443.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/479_443.png differ diff --git a/lib/assets/images/479_445.png b/lib/assets/images/479_445.png new file mode 100644 index 0000000..aae9946 Binary files /dev/null and b/lib/assets/images/479_445.png differ diff --git a/lib/assets/images/479_448.png b/lib/assets/images/479_448.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/479_448.png differ diff --git a/lib/assets/images/479_451.png b/lib/assets/images/479_451.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/479_451.png differ diff --git a/lib/assets/images/479_454.png b/lib/assets/images/479_454.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/479_454.png differ diff --git a/lib/assets/images/479_457.png b/lib/assets/images/479_457.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/479_457.png differ diff --git a/lib/assets/images/479_461.png b/lib/assets/images/479_461.png new file mode 100644 index 0000000..035cb03 Binary files /dev/null and b/lib/assets/images/479_461.png differ diff --git a/lib/assets/images/479_462.png b/lib/assets/images/479_462.png new file mode 100644 index 0000000..16f474a Binary files /dev/null and b/lib/assets/images/479_462.png differ diff --git a/lib/assets/images/479_466.png b/lib/assets/images/479_466.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/479_466.png differ diff --git a/lib/assets/images/479_467.png b/lib/assets/images/479_467.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/479_467.png differ diff --git a/lib/assets/images/479_469.png b/lib/assets/images/479_469.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_469.png differ diff --git a/lib/assets/images/479_470.png b/lib/assets/images/479_470.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_470.png differ diff --git a/lib/assets/images/479_471.png b/lib/assets/images/479_471.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_471.png differ diff --git a/lib/assets/images/479_472.png b/lib/assets/images/479_472.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/479_472.png differ diff --git a/lib/assets/images/479_473.png b/lib/assets/images/479_473.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/479_473.png differ diff --git a/lib/assets/images/479_477.png b/lib/assets/images/479_477.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/479_477.png differ diff --git a/lib/assets/images/479_488.png b/lib/assets/images/479_488.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_488.png differ diff --git a/lib/assets/images/479_495.png b/lib/assets/images/479_495.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/479_495.png differ diff --git a/lib/assets/images/479_543.png b/lib/assets/images/479_543.png new file mode 100644 index 0000000..c10a287 Binary files /dev/null and b/lib/assets/images/479_543.png differ diff --git a/lib/assets/images/479_557.png b/lib/assets/images/479_557.png new file mode 100644 index 0000000..c309ad9 Binary files /dev/null and b/lib/assets/images/479_557.png differ diff --git a/lib/assets/images/479_559.png b/lib/assets/images/479_559.png new file mode 100644 index 0000000..0977bb4 Binary files /dev/null and b/lib/assets/images/479_559.png differ diff --git a/lib/assets/images/479_560.png b/lib/assets/images/479_560.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/479_560.png differ diff --git a/lib/assets/images/479_562.png b/lib/assets/images/479_562.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/479_562.png differ diff --git a/lib/assets/images/479_563.png b/lib/assets/images/479_563.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/479_563.png differ diff --git a/lib/assets/images/479_565.png b/lib/assets/images/479_565.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_565.png differ diff --git a/lib/assets/images/479_566.png b/lib/assets/images/479_566.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_566.png differ diff --git a/lib/assets/images/479_567.png b/lib/assets/images/479_567.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_567.png differ diff --git a/lib/assets/images/479_568.png b/lib/assets/images/479_568.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/479_568.png differ diff --git a/lib/assets/images/479_569.png b/lib/assets/images/479_569.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/479_569.png differ diff --git a/lib/assets/images/479_573.png b/lib/assets/images/479_573.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/479_573.png differ diff --git a/lib/assets/images/479_578.png b/lib/assets/images/479_578.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_578.png differ diff --git a/lib/assets/images/479_584.png b/lib/assets/images/479_584.png new file mode 100644 index 0000000..cf13b1e Binary files /dev/null and b/lib/assets/images/479_584.png differ diff --git a/lib/assets/images/479_585.png b/lib/assets/images/479_585.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_585.png differ diff --git a/lib/assets/images/479_591.png b/lib/assets/images/479_591.png new file mode 100644 index 0000000..1c23445 Binary files /dev/null and b/lib/assets/images/479_591.png differ diff --git a/lib/assets/images/479_595.png b/lib/assets/images/479_595.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/479_595.png differ diff --git a/lib/assets/images/479_602.png b/lib/assets/images/479_602.png new file mode 100644 index 0000000..c10a287 Binary files /dev/null and b/lib/assets/images/479_602.png differ diff --git a/lib/assets/images/479_610.png b/lib/assets/images/479_610.png new file mode 100644 index 0000000..c309ad9 Binary files /dev/null and b/lib/assets/images/479_610.png differ diff --git a/lib/assets/images/479_612.png b/lib/assets/images/479_612.png new file mode 100644 index 0000000..b2974d5 Binary files /dev/null and b/lib/assets/images/479_612.png differ diff --git a/lib/assets/images/479_624.png b/lib/assets/images/479_624.png new file mode 100644 index 0000000..a80deb4 Binary files /dev/null and b/lib/assets/images/479_624.png differ diff --git a/lib/assets/images/479_625.png b/lib/assets/images/479_625.png new file mode 100644 index 0000000..c638884 Binary files /dev/null and b/lib/assets/images/479_625.png differ diff --git a/lib/assets/images/479_626.png b/lib/assets/images/479_626.png new file mode 100644 index 0000000..01f92c5 Binary files /dev/null and b/lib/assets/images/479_626.png differ diff --git a/lib/assets/images/479_627.png b/lib/assets/images/479_627.png new file mode 100644 index 0000000..fe814d1 Binary files /dev/null and b/lib/assets/images/479_627.png differ diff --git a/lib/assets/images/479_630.png b/lib/assets/images/479_630.png new file mode 100644 index 0000000..fe814d1 Binary files /dev/null and b/lib/assets/images/479_630.png differ diff --git a/lib/assets/images/479_633.png b/lib/assets/images/479_633.png new file mode 100644 index 0000000..e79cc3d Binary files /dev/null and b/lib/assets/images/479_633.png differ diff --git a/lib/assets/images/479_647.png b/lib/assets/images/479_647.png new file mode 100644 index 0000000..98251b1 Binary files /dev/null and b/lib/assets/images/479_647.png differ diff --git a/lib/assets/images/479_648.png b/lib/assets/images/479_648.png new file mode 100644 index 0000000..f49f520 Binary files /dev/null and b/lib/assets/images/479_648.png differ diff --git a/lib/assets/images/479_649.png b/lib/assets/images/479_649.png new file mode 100644 index 0000000..fa67434 Binary files /dev/null and b/lib/assets/images/479_649.png differ diff --git a/lib/assets/images/479_650.png b/lib/assets/images/479_650.png new file mode 100644 index 0000000..69939af Binary files /dev/null and b/lib/assets/images/479_650.png differ diff --git a/lib/assets/images/479_651.png b/lib/assets/images/479_651.png new file mode 100644 index 0000000..49c9d8f Binary files /dev/null and b/lib/assets/images/479_651.png differ diff --git a/lib/assets/images/479_652.png b/lib/assets/images/479_652.png new file mode 100644 index 0000000..616b13f Binary files /dev/null and b/lib/assets/images/479_652.png differ diff --git a/lib/assets/images/479_653.png b/lib/assets/images/479_653.png new file mode 100644 index 0000000..d819446 Binary files /dev/null and b/lib/assets/images/479_653.png differ diff --git a/lib/assets/images/479_654.png b/lib/assets/images/479_654.png new file mode 100644 index 0000000..029ab1a Binary files /dev/null and b/lib/assets/images/479_654.png differ diff --git a/lib/assets/images/479_655.png b/lib/assets/images/479_655.png new file mode 100644 index 0000000..b6c8794 Binary files /dev/null and b/lib/assets/images/479_655.png differ diff --git a/lib/assets/images/479_656.png b/lib/assets/images/479_656.png new file mode 100644 index 0000000..8192317 Binary files /dev/null and b/lib/assets/images/479_656.png differ diff --git a/lib/assets/images/479_657.png b/lib/assets/images/479_657.png new file mode 100644 index 0000000..4d00cff Binary files /dev/null and b/lib/assets/images/479_657.png differ diff --git a/lib/assets/images/479_658.png b/lib/assets/images/479_658.png new file mode 100644 index 0000000..e77a2ff Binary files /dev/null and b/lib/assets/images/479_658.png differ diff --git a/lib/assets/images/479_659.png b/lib/assets/images/479_659.png new file mode 100644 index 0000000..1ae27c5 Binary files /dev/null and b/lib/assets/images/479_659.png differ diff --git a/lib/assets/images/479_660.png b/lib/assets/images/479_660.png new file mode 100644 index 0000000..5d2f43b Binary files /dev/null and b/lib/assets/images/479_660.png differ diff --git a/lib/assets/images/479_661.png b/lib/assets/images/479_661.png new file mode 100644 index 0000000..d02fb91 Binary files /dev/null and b/lib/assets/images/479_661.png differ diff --git a/lib/assets/images/479_662.png b/lib/assets/images/479_662.png new file mode 100644 index 0000000..d9c4e43 Binary files /dev/null and b/lib/assets/images/479_662.png differ diff --git a/lib/assets/images/479_663.png b/lib/assets/images/479_663.png new file mode 100644 index 0000000..757e621 Binary files /dev/null and b/lib/assets/images/479_663.png differ diff --git a/lib/assets/images/479_664.png b/lib/assets/images/479_664.png new file mode 100644 index 0000000..fe24ab2 Binary files /dev/null and b/lib/assets/images/479_664.png differ diff --git a/lib/assets/images/479_665.png b/lib/assets/images/479_665.png new file mode 100644 index 0000000..920e92c Binary files /dev/null and b/lib/assets/images/479_665.png differ diff --git a/lib/assets/images/479_666.png b/lib/assets/images/479_666.png new file mode 100644 index 0000000..fa25d9d Binary files /dev/null and b/lib/assets/images/479_666.png differ diff --git a/lib/assets/images/479_667.png b/lib/assets/images/479_667.png new file mode 100644 index 0000000..7053f9f Binary files /dev/null and b/lib/assets/images/479_667.png differ diff --git a/lib/assets/images/479_668.png b/lib/assets/images/479_668.png new file mode 100644 index 0000000..bda9048 Binary files /dev/null and b/lib/assets/images/479_668.png differ diff --git a/lib/assets/images/479_669.png b/lib/assets/images/479_669.png new file mode 100644 index 0000000..e68f66f Binary files /dev/null and b/lib/assets/images/479_669.png differ diff --git a/lib/assets/images/479_670.png b/lib/assets/images/479_670.png new file mode 100644 index 0000000..1ac090a Binary files /dev/null and b/lib/assets/images/479_670.png differ diff --git a/lib/assets/images/479_671.png b/lib/assets/images/479_671.png new file mode 100644 index 0000000..b28fa2c Binary files /dev/null and b/lib/assets/images/479_671.png differ diff --git a/lib/assets/images/479_672.png b/lib/assets/images/479_672.png new file mode 100644 index 0000000..2770a7f Binary files /dev/null and b/lib/assets/images/479_672.png differ diff --git a/lib/assets/images/479_673.png b/lib/assets/images/479_673.png new file mode 100644 index 0000000..47bdb69 Binary files /dev/null and b/lib/assets/images/479_673.png differ diff --git a/lib/assets/images/479_674.png b/lib/assets/images/479_674.png new file mode 100644 index 0000000..0755804 Binary files /dev/null and b/lib/assets/images/479_674.png differ diff --git a/lib/assets/images/479_675.png b/lib/assets/images/479_675.png new file mode 100644 index 0000000..b3f5f27 Binary files /dev/null and b/lib/assets/images/479_675.png differ diff --git a/lib/assets/images/479_676.png b/lib/assets/images/479_676.png new file mode 100644 index 0000000..321a0ff Binary files /dev/null and b/lib/assets/images/479_676.png differ diff --git a/lib/assets/images/479_677.png b/lib/assets/images/479_677.png new file mode 100644 index 0000000..c0cd75e Binary files /dev/null and b/lib/assets/images/479_677.png differ diff --git a/lib/assets/images/479_678.png b/lib/assets/images/479_678.png new file mode 100644 index 0000000..4b33230 Binary files /dev/null and b/lib/assets/images/479_678.png differ diff --git a/lib/assets/images/479_679.png b/lib/assets/images/479_679.png new file mode 100644 index 0000000..21c694c Binary files /dev/null and b/lib/assets/images/479_679.png differ diff --git a/lib/assets/images/479_680.png b/lib/assets/images/479_680.png new file mode 100644 index 0000000..af0d6c3 Binary files /dev/null and b/lib/assets/images/479_680.png differ diff --git a/lib/assets/images/479_681.png b/lib/assets/images/479_681.png new file mode 100644 index 0000000..cb22080 Binary files /dev/null and b/lib/assets/images/479_681.png differ diff --git a/lib/assets/images/479_682.png b/lib/assets/images/479_682.png new file mode 100644 index 0000000..5191ff4 Binary files /dev/null and b/lib/assets/images/479_682.png differ diff --git a/lib/assets/images/479_683.png b/lib/assets/images/479_683.png new file mode 100644 index 0000000..8b3e29f Binary files /dev/null and b/lib/assets/images/479_683.png differ diff --git a/lib/assets/images/479_684.png b/lib/assets/images/479_684.png new file mode 100644 index 0000000..5e22685 Binary files /dev/null and b/lib/assets/images/479_684.png differ diff --git a/lib/assets/images/479_685.png b/lib/assets/images/479_685.png new file mode 100644 index 0000000..68ca875 Binary files /dev/null and b/lib/assets/images/479_685.png differ diff --git a/lib/assets/images/479_686.png b/lib/assets/images/479_686.png new file mode 100644 index 0000000..922feee Binary files /dev/null and b/lib/assets/images/479_686.png differ diff --git a/lib/assets/images/479_687.png b/lib/assets/images/479_687.png new file mode 100644 index 0000000..9191c41 Binary files /dev/null and b/lib/assets/images/479_687.png differ diff --git a/lib/assets/images/479_688.png b/lib/assets/images/479_688.png new file mode 100644 index 0000000..9826fef Binary files /dev/null and b/lib/assets/images/479_688.png differ diff --git a/lib/assets/images/479_689.png b/lib/assets/images/479_689.png new file mode 100644 index 0000000..bfc1f75 Binary files /dev/null and b/lib/assets/images/479_689.png differ diff --git a/lib/assets/images/479_692.png b/lib/assets/images/479_692.png new file mode 100644 index 0000000..e134dec Binary files /dev/null and b/lib/assets/images/479_692.png differ diff --git a/lib/assets/images/479_693.png b/lib/assets/images/479_693.png new file mode 100644 index 0000000..39e67b0 Binary files /dev/null and b/lib/assets/images/479_693.png differ diff --git a/lib/assets/images/479_694.png b/lib/assets/images/479_694.png new file mode 100644 index 0000000..6a01afd Binary files /dev/null and b/lib/assets/images/479_694.png differ diff --git a/lib/assets/images/479_695.png b/lib/assets/images/479_695.png new file mode 100644 index 0000000..48893b5 Binary files /dev/null and b/lib/assets/images/479_695.png differ diff --git a/lib/assets/images/479_696.png b/lib/assets/images/479_696.png new file mode 100644 index 0000000..2f49e94 Binary files /dev/null and b/lib/assets/images/479_696.png differ diff --git a/lib/assets/images/479_697.png b/lib/assets/images/479_697.png new file mode 100644 index 0000000..780aa38 Binary files /dev/null and b/lib/assets/images/479_697.png differ diff --git a/lib/assets/images/479_698.png b/lib/assets/images/479_698.png new file mode 100644 index 0000000..1ce6053 Binary files /dev/null and b/lib/assets/images/479_698.png differ diff --git a/lib/assets/images/479_699.png b/lib/assets/images/479_699.png new file mode 100644 index 0000000..575d29a Binary files /dev/null and b/lib/assets/images/479_699.png differ diff --git a/lib/assets/images/479_700.png b/lib/assets/images/479_700.png new file mode 100644 index 0000000..f0e2f51 Binary files /dev/null and b/lib/assets/images/479_700.png differ diff --git a/lib/assets/images/479_701.png b/lib/assets/images/479_701.png new file mode 100644 index 0000000..f011054 Binary files /dev/null and b/lib/assets/images/479_701.png differ diff --git a/lib/assets/images/479_702.png b/lib/assets/images/479_702.png new file mode 100644 index 0000000..06a3239 Binary files /dev/null and b/lib/assets/images/479_702.png differ diff --git a/lib/assets/images/479_703.png b/lib/assets/images/479_703.png new file mode 100644 index 0000000..e71a163 Binary files /dev/null and b/lib/assets/images/479_703.png differ diff --git a/lib/assets/images/479_704.png b/lib/assets/images/479_704.png new file mode 100644 index 0000000..4429129 Binary files /dev/null and b/lib/assets/images/479_704.png differ diff --git a/lib/assets/images/479_705.png b/lib/assets/images/479_705.png new file mode 100644 index 0000000..d7c3c03 Binary files /dev/null and b/lib/assets/images/479_705.png differ diff --git a/lib/assets/images/479_706.png b/lib/assets/images/479_706.png new file mode 100644 index 0000000..826aadc Binary files /dev/null and b/lib/assets/images/479_706.png differ diff --git a/lib/assets/images/479_707.png b/lib/assets/images/479_707.png new file mode 100644 index 0000000..bcf6212 Binary files /dev/null and b/lib/assets/images/479_707.png differ diff --git a/lib/assets/images/479_708.png b/lib/assets/images/479_708.png new file mode 100644 index 0000000..0975365 Binary files /dev/null and b/lib/assets/images/479_708.png differ diff --git a/lib/assets/images/479_709.png b/lib/assets/images/479_709.png new file mode 100644 index 0000000..4ba7461 Binary files /dev/null and b/lib/assets/images/479_709.png differ diff --git a/lib/assets/images/479_710.png b/lib/assets/images/479_710.png new file mode 100644 index 0000000..fad46c3 Binary files /dev/null and b/lib/assets/images/479_710.png differ diff --git a/lib/assets/images/479_711.png b/lib/assets/images/479_711.png new file mode 100644 index 0000000..44b6fb1 Binary files /dev/null and b/lib/assets/images/479_711.png differ diff --git a/lib/assets/images/479_712.png b/lib/assets/images/479_712.png new file mode 100644 index 0000000..b950d64 Binary files /dev/null and b/lib/assets/images/479_712.png differ diff --git a/lib/assets/images/479_713.png b/lib/assets/images/479_713.png new file mode 100644 index 0000000..015dd42 Binary files /dev/null and b/lib/assets/images/479_713.png differ diff --git a/lib/assets/images/479_714.png b/lib/assets/images/479_714.png new file mode 100644 index 0000000..ceb2f01 Binary files /dev/null and b/lib/assets/images/479_714.png differ diff --git a/lib/assets/images/479_715.png b/lib/assets/images/479_715.png new file mode 100644 index 0000000..73ff887 Binary files /dev/null and b/lib/assets/images/479_715.png differ diff --git a/lib/assets/images/479_716.png b/lib/assets/images/479_716.png new file mode 100644 index 0000000..ca5ddd8 Binary files /dev/null and b/lib/assets/images/479_716.png differ diff --git a/lib/assets/images/479_717.png b/lib/assets/images/479_717.png new file mode 100644 index 0000000..0d317ed Binary files /dev/null and b/lib/assets/images/479_717.png differ diff --git a/lib/assets/images/479_718.png b/lib/assets/images/479_718.png new file mode 100644 index 0000000..f64f2a8 Binary files /dev/null and b/lib/assets/images/479_718.png differ diff --git a/lib/assets/images/479_719.png b/lib/assets/images/479_719.png new file mode 100644 index 0000000..681a993 Binary files /dev/null and b/lib/assets/images/479_719.png differ diff --git a/lib/assets/images/479_720.png b/lib/assets/images/479_720.png new file mode 100644 index 0000000..fc20104 Binary files /dev/null and b/lib/assets/images/479_720.png differ diff --git a/lib/assets/images/479_721.png b/lib/assets/images/479_721.png new file mode 100644 index 0000000..7b50756 Binary files /dev/null and b/lib/assets/images/479_721.png differ diff --git a/lib/assets/images/479_722.png b/lib/assets/images/479_722.png new file mode 100644 index 0000000..884eb88 Binary files /dev/null and b/lib/assets/images/479_722.png differ diff --git a/lib/assets/images/479_723.png b/lib/assets/images/479_723.png new file mode 100644 index 0000000..814dc8c Binary files /dev/null and b/lib/assets/images/479_723.png differ diff --git a/lib/assets/images/479_724.png b/lib/assets/images/479_724.png new file mode 100644 index 0000000..138c8a2 Binary files /dev/null and b/lib/assets/images/479_724.png differ diff --git a/lib/assets/images/479_725.png b/lib/assets/images/479_725.png new file mode 100644 index 0000000..f7b598a Binary files /dev/null and b/lib/assets/images/479_725.png differ diff --git a/lib/assets/images/479_726.png b/lib/assets/images/479_726.png new file mode 100644 index 0000000..6fff3eb Binary files /dev/null and b/lib/assets/images/479_726.png differ diff --git a/lib/assets/images/479_727.png b/lib/assets/images/479_727.png new file mode 100644 index 0000000..fe4e2fa Binary files /dev/null and b/lib/assets/images/479_727.png differ diff --git a/lib/assets/images/479_728.png b/lib/assets/images/479_728.png new file mode 100644 index 0000000..0299942 Binary files /dev/null and b/lib/assets/images/479_728.png differ diff --git a/lib/assets/images/479_729.png b/lib/assets/images/479_729.png new file mode 100644 index 0000000..79ae4f6 Binary files /dev/null and b/lib/assets/images/479_729.png differ diff --git a/lib/assets/images/479_730.png b/lib/assets/images/479_730.png new file mode 100644 index 0000000..bece11c Binary files /dev/null and b/lib/assets/images/479_730.png differ diff --git a/lib/assets/images/479_731.png b/lib/assets/images/479_731.png new file mode 100644 index 0000000..9f708c4 Binary files /dev/null and b/lib/assets/images/479_731.png differ diff --git a/lib/assets/images/479_732.png b/lib/assets/images/479_732.png new file mode 100644 index 0000000..732e478 Binary files /dev/null and b/lib/assets/images/479_732.png differ diff --git a/lib/assets/images/479_733.png b/lib/assets/images/479_733.png new file mode 100644 index 0000000..11b1af2 Binary files /dev/null and b/lib/assets/images/479_733.png differ diff --git a/lib/assets/images/479_738.png b/lib/assets/images/479_738.png new file mode 100644 index 0000000..8b9526c Binary files /dev/null and b/lib/assets/images/479_738.png differ diff --git a/lib/assets/images/479_739.png b/lib/assets/images/479_739.png new file mode 100644 index 0000000..fca537d Binary files /dev/null and b/lib/assets/images/479_739.png differ diff --git a/lib/assets/images/479_740.png b/lib/assets/images/479_740.png new file mode 100644 index 0000000..49d1662 Binary files /dev/null and b/lib/assets/images/479_740.png differ diff --git a/lib/assets/images/479_741.png b/lib/assets/images/479_741.png new file mode 100644 index 0000000..5f8c467 Binary files /dev/null and b/lib/assets/images/479_741.png differ diff --git a/lib/assets/images/479_742.png b/lib/assets/images/479_742.png new file mode 100644 index 0000000..35bb623 Binary files /dev/null and b/lib/assets/images/479_742.png differ diff --git a/lib/assets/images/479_743.png b/lib/assets/images/479_743.png new file mode 100644 index 0000000..b5fc4fe Binary files /dev/null and b/lib/assets/images/479_743.png differ diff --git a/lib/assets/images/479_744.png b/lib/assets/images/479_744.png new file mode 100644 index 0000000..9556c4c Binary files /dev/null and b/lib/assets/images/479_744.png differ diff --git a/lib/assets/images/479_745.png b/lib/assets/images/479_745.png new file mode 100644 index 0000000..fc39947 Binary files /dev/null and b/lib/assets/images/479_745.png differ diff --git a/lib/assets/images/479_746.png b/lib/assets/images/479_746.png new file mode 100644 index 0000000..db787d5 Binary files /dev/null and b/lib/assets/images/479_746.png differ diff --git a/lib/assets/images/479_747.png b/lib/assets/images/479_747.png new file mode 100644 index 0000000..f0aba4b Binary files /dev/null and b/lib/assets/images/479_747.png differ diff --git a/lib/assets/images/479_748.png b/lib/assets/images/479_748.png new file mode 100644 index 0000000..85d7b9d Binary files /dev/null and b/lib/assets/images/479_748.png differ diff --git a/lib/assets/images/479_749.png b/lib/assets/images/479_749.png new file mode 100644 index 0000000..eb85162 Binary files /dev/null and b/lib/assets/images/479_749.png differ diff --git a/lib/assets/images/479_750.png b/lib/assets/images/479_750.png new file mode 100644 index 0000000..024a040 Binary files /dev/null and b/lib/assets/images/479_750.png differ diff --git a/lib/assets/images/479_751.png b/lib/assets/images/479_751.png new file mode 100644 index 0000000..b282af6 Binary files /dev/null and b/lib/assets/images/479_751.png differ diff --git a/lib/assets/images/479_752.png b/lib/assets/images/479_752.png new file mode 100644 index 0000000..a89358b Binary files /dev/null and b/lib/assets/images/479_752.png differ diff --git a/lib/assets/images/479_753.png b/lib/assets/images/479_753.png new file mode 100644 index 0000000..611b22e Binary files /dev/null and b/lib/assets/images/479_753.png differ diff --git a/lib/assets/images/479_754.png b/lib/assets/images/479_754.png new file mode 100644 index 0000000..024a040 Binary files /dev/null and b/lib/assets/images/479_754.png differ diff --git a/lib/assets/images/479_755.png b/lib/assets/images/479_755.png new file mode 100644 index 0000000..592d5b5 Binary files /dev/null and b/lib/assets/images/479_755.png differ diff --git a/lib/assets/images/479_756.png b/lib/assets/images/479_756.png new file mode 100644 index 0000000..1455e79 Binary files /dev/null and b/lib/assets/images/479_756.png differ diff --git a/lib/assets/images/479_757.png b/lib/assets/images/479_757.png new file mode 100644 index 0000000..11a4fe4 Binary files /dev/null and b/lib/assets/images/479_757.png differ diff --git a/lib/assets/images/479_758.png b/lib/assets/images/479_758.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_758.png differ diff --git a/lib/assets/images/479_759.png b/lib/assets/images/479_759.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_759.png differ diff --git a/lib/assets/images/479_760.png b/lib/assets/images/479_760.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_760.png differ diff --git a/lib/assets/images/479_761.png b/lib/assets/images/479_761.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_761.png differ diff --git a/lib/assets/images/479_762.png b/lib/assets/images/479_762.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_762.png differ diff --git a/lib/assets/images/479_763.png b/lib/assets/images/479_763.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_763.png differ diff --git a/lib/assets/images/479_764.png b/lib/assets/images/479_764.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_764.png differ diff --git a/lib/assets/images/479_765.png b/lib/assets/images/479_765.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_765.png differ diff --git a/lib/assets/images/479_766.png b/lib/assets/images/479_766.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_766.png differ diff --git a/lib/assets/images/479_767.png b/lib/assets/images/479_767.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_767.png differ diff --git a/lib/assets/images/479_768.png b/lib/assets/images/479_768.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_768.png differ diff --git a/lib/assets/images/479_769.png b/lib/assets/images/479_769.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_769.png differ diff --git a/lib/assets/images/479_770.png b/lib/assets/images/479_770.png new file mode 100644 index 0000000..45dd732 Binary files /dev/null and b/lib/assets/images/479_770.png differ diff --git a/lib/assets/images/479_771.png b/lib/assets/images/479_771.png new file mode 100644 index 0000000..b282af6 Binary files /dev/null and b/lib/assets/images/479_771.png differ diff --git a/lib/assets/images/479_772.png b/lib/assets/images/479_772.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_772.png differ diff --git a/lib/assets/images/479_773.png b/lib/assets/images/479_773.png new file mode 100644 index 0000000..b24c2e6 Binary files /dev/null and b/lib/assets/images/479_773.png differ diff --git a/lib/assets/images/479_774.png b/lib/assets/images/479_774.png new file mode 100644 index 0000000..6987967 Binary files /dev/null and b/lib/assets/images/479_774.png differ diff --git a/lib/assets/images/479_775.png b/lib/assets/images/479_775.png new file mode 100644 index 0000000..f403f47 Binary files /dev/null and b/lib/assets/images/479_775.png differ diff --git a/lib/assets/images/479_776.png b/lib/assets/images/479_776.png new file mode 100644 index 0000000..685994a Binary files /dev/null and b/lib/assets/images/479_776.png differ diff --git a/lib/assets/images/479_777.png b/lib/assets/images/479_777.png new file mode 100644 index 0000000..09aa53e Binary files /dev/null and b/lib/assets/images/479_777.png differ diff --git a/lib/assets/images/479_778.png b/lib/assets/images/479_778.png new file mode 100644 index 0000000..5898e98 Binary files /dev/null and b/lib/assets/images/479_778.png differ diff --git a/lib/assets/images/479_779.png b/lib/assets/images/479_779.png new file mode 100644 index 0000000..c6440ec Binary files /dev/null and b/lib/assets/images/479_779.png differ diff --git a/lib/assets/images/479_780.png b/lib/assets/images/479_780.png new file mode 100644 index 0000000..0dbf462 Binary files /dev/null and b/lib/assets/images/479_780.png differ diff --git a/lib/assets/images/479_781.png b/lib/assets/images/479_781.png new file mode 100644 index 0000000..7538c0e Binary files /dev/null and b/lib/assets/images/479_781.png differ diff --git a/lib/assets/images/479_782.png b/lib/assets/images/479_782.png new file mode 100644 index 0000000..a617ec5 Binary files /dev/null and b/lib/assets/images/479_782.png differ diff --git a/lib/assets/images/479_783.png b/lib/assets/images/479_783.png new file mode 100644 index 0000000..6c468e0 Binary files /dev/null and b/lib/assets/images/479_783.png differ diff --git a/lib/assets/images/479_784.png b/lib/assets/images/479_784.png new file mode 100644 index 0000000..2c12aab Binary files /dev/null and b/lib/assets/images/479_784.png differ diff --git a/lib/assets/images/479_785.png b/lib/assets/images/479_785.png new file mode 100644 index 0000000..9142ff4 Binary files /dev/null and b/lib/assets/images/479_785.png differ diff --git a/lib/assets/images/479_786.png b/lib/assets/images/479_786.png new file mode 100644 index 0000000..4de74d3 Binary files /dev/null and b/lib/assets/images/479_786.png differ diff --git a/lib/assets/images/479_787.png b/lib/assets/images/479_787.png new file mode 100644 index 0000000..11e8558 Binary files /dev/null and b/lib/assets/images/479_787.png differ diff --git a/lib/assets/images/479_788.png b/lib/assets/images/479_788.png new file mode 100644 index 0000000..19e4436 Binary files /dev/null and b/lib/assets/images/479_788.png differ diff --git a/lib/assets/images/479_789.png b/lib/assets/images/479_789.png new file mode 100644 index 0000000..348ebaf Binary files /dev/null and b/lib/assets/images/479_789.png differ diff --git a/lib/assets/images/479_790.png b/lib/assets/images/479_790.png new file mode 100644 index 0000000..302dace Binary files /dev/null and b/lib/assets/images/479_790.png differ diff --git a/lib/assets/images/479_791.png b/lib/assets/images/479_791.png new file mode 100644 index 0000000..f063b0f Binary files /dev/null and b/lib/assets/images/479_791.png differ diff --git a/lib/assets/images/479_792.png b/lib/assets/images/479_792.png new file mode 100644 index 0000000..86bc993 Binary files /dev/null and b/lib/assets/images/479_792.png differ diff --git a/lib/assets/images/479_793.png b/lib/assets/images/479_793.png new file mode 100644 index 0000000..e7e20a4 Binary files /dev/null and b/lib/assets/images/479_793.png differ diff --git a/lib/assets/images/479_794.png b/lib/assets/images/479_794.png new file mode 100644 index 0000000..4fab7b4 Binary files /dev/null and b/lib/assets/images/479_794.png differ diff --git a/lib/assets/images/479_795.png b/lib/assets/images/479_795.png new file mode 100644 index 0000000..aa6cbfa Binary files /dev/null and b/lib/assets/images/479_795.png differ diff --git a/lib/assets/images/479_796.png b/lib/assets/images/479_796.png new file mode 100644 index 0000000..e98acfe Binary files /dev/null and b/lib/assets/images/479_796.png differ diff --git a/lib/assets/images/479_797.png b/lib/assets/images/479_797.png new file mode 100644 index 0000000..5c2ab89 Binary files /dev/null and b/lib/assets/images/479_797.png differ diff --git a/lib/assets/images/479_798.png b/lib/assets/images/479_798.png new file mode 100644 index 0000000..af4f89e Binary files /dev/null and b/lib/assets/images/479_798.png differ diff --git a/lib/assets/images/479_799.png b/lib/assets/images/479_799.png new file mode 100644 index 0000000..a72d6e9 Binary files /dev/null and b/lib/assets/images/479_799.png differ diff --git a/lib/assets/images/479_800.png b/lib/assets/images/479_800.png new file mode 100644 index 0000000..b96fc03 Binary files /dev/null and b/lib/assets/images/479_800.png differ diff --git a/lib/assets/images/479_801.png b/lib/assets/images/479_801.png new file mode 100644 index 0000000..780a227 Binary files /dev/null and b/lib/assets/images/479_801.png differ diff --git a/lib/assets/images/479_802.png b/lib/assets/images/479_802.png new file mode 100644 index 0000000..9ac4a68 Binary files /dev/null and b/lib/assets/images/479_802.png differ diff --git a/lib/assets/images/479_803.png b/lib/assets/images/479_803.png new file mode 100644 index 0000000..4f9f1ec Binary files /dev/null and b/lib/assets/images/479_803.png differ diff --git a/lib/assets/images/479_804.png b/lib/assets/images/479_804.png new file mode 100644 index 0000000..2c709fc Binary files /dev/null and b/lib/assets/images/479_804.png differ diff --git a/lib/assets/images/479_805.png b/lib/assets/images/479_805.png new file mode 100644 index 0000000..7320f47 Binary files /dev/null and b/lib/assets/images/479_805.png differ diff --git a/lib/assets/images/479_806.png b/lib/assets/images/479_806.png new file mode 100644 index 0000000..4f910f9 Binary files /dev/null and b/lib/assets/images/479_806.png differ diff --git a/lib/assets/images/479_807.png b/lib/assets/images/479_807.png new file mode 100644 index 0000000..77fba7c Binary files /dev/null and b/lib/assets/images/479_807.png differ diff --git a/lib/assets/images/479_808.png b/lib/assets/images/479_808.png new file mode 100644 index 0000000..c48ba90 Binary files /dev/null and b/lib/assets/images/479_808.png differ diff --git a/lib/assets/images/479_809.png b/lib/assets/images/479_809.png new file mode 100644 index 0000000..b7fab4c Binary files /dev/null and b/lib/assets/images/479_809.png differ diff --git a/lib/assets/images/479_810.png b/lib/assets/images/479_810.png new file mode 100644 index 0000000..656f62b Binary files /dev/null and b/lib/assets/images/479_810.png differ diff --git a/lib/assets/images/479_811.png b/lib/assets/images/479_811.png new file mode 100644 index 0000000..70c5991 Binary files /dev/null and b/lib/assets/images/479_811.png differ diff --git a/lib/assets/images/479_812.png b/lib/assets/images/479_812.png new file mode 100644 index 0000000..2493d0e Binary files /dev/null and b/lib/assets/images/479_812.png differ diff --git a/lib/assets/images/479_813.png b/lib/assets/images/479_813.png new file mode 100644 index 0000000..b869001 Binary files /dev/null and b/lib/assets/images/479_813.png differ diff --git a/lib/assets/images/479_814.png b/lib/assets/images/479_814.png new file mode 100644 index 0000000..9f12b27 Binary files /dev/null and b/lib/assets/images/479_814.png differ diff --git a/lib/assets/images/479_815.png b/lib/assets/images/479_815.png new file mode 100644 index 0000000..1b64d3a Binary files /dev/null and b/lib/assets/images/479_815.png differ diff --git a/lib/assets/images/479_816.png b/lib/assets/images/479_816.png new file mode 100644 index 0000000..8c159a4 Binary files /dev/null and b/lib/assets/images/479_816.png differ diff --git a/lib/assets/images/479_817.png b/lib/assets/images/479_817.png new file mode 100644 index 0000000..f3cf012 Binary files /dev/null and b/lib/assets/images/479_817.png differ diff --git a/lib/assets/images/479_818.png b/lib/assets/images/479_818.png new file mode 100644 index 0000000..e3f064d Binary files /dev/null and b/lib/assets/images/479_818.png differ diff --git a/lib/assets/images/479_819.png b/lib/assets/images/479_819.png new file mode 100644 index 0000000..d328f3b Binary files /dev/null and b/lib/assets/images/479_819.png differ diff --git a/lib/assets/images/479_820.png b/lib/assets/images/479_820.png new file mode 100644 index 0000000..bf6d85d Binary files /dev/null and b/lib/assets/images/479_820.png differ diff --git a/lib/assets/images/479_821.png b/lib/assets/images/479_821.png new file mode 100644 index 0000000..1ebc0fc Binary files /dev/null and b/lib/assets/images/479_821.png differ diff --git a/lib/assets/images/479_822.png b/lib/assets/images/479_822.png new file mode 100644 index 0000000..ee6a455 Binary files /dev/null and b/lib/assets/images/479_822.png differ diff --git a/lib/assets/images/479_823.png b/lib/assets/images/479_823.png new file mode 100644 index 0000000..665fe05 Binary files /dev/null and b/lib/assets/images/479_823.png differ diff --git a/lib/assets/images/479_824.png b/lib/assets/images/479_824.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/479_824.png differ diff --git a/lib/assets/images/479_826.png b/lib/assets/images/479_826.png new file mode 100644 index 0000000..e308546 Binary files /dev/null and b/lib/assets/images/479_826.png differ diff --git a/lib/assets/images/479_831.png b/lib/assets/images/479_831.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/479_831.png differ diff --git a/lib/assets/images/479_839.png b/lib/assets/images/479_839.png new file mode 100644 index 0000000..349f389 Binary files /dev/null and b/lib/assets/images/479_839.png differ diff --git a/lib/assets/images/479_846.png b/lib/assets/images/479_846.png new file mode 100644 index 0000000..45aa8ae Binary files /dev/null and b/lib/assets/images/479_846.png differ diff --git a/lib/assets/images/479_854.png b/lib/assets/images/479_854.png new file mode 100644 index 0000000..7284fe7 Binary files /dev/null and b/lib/assets/images/479_854.png differ diff --git a/lib/assets/images/479_856.png b/lib/assets/images/479_856.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/479_856.png differ diff --git a/lib/assets/images/479_857.png b/lib/assets/images/479_857.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/479_857.png differ diff --git a/lib/assets/images/479_858.png b/lib/assets/images/479_858.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/479_858.png differ diff --git a/lib/assets/images/479_868.png b/lib/assets/images/479_868.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/479_868.png differ diff --git a/lib/assets/images/479_869.png b/lib/assets/images/479_869.png new file mode 100644 index 0000000..512527f Binary files /dev/null and b/lib/assets/images/479_869.png differ diff --git a/lib/assets/images/479_870.png b/lib/assets/images/479_870.png new file mode 100644 index 0000000..7347282 Binary files /dev/null and b/lib/assets/images/479_870.png differ diff --git a/lib/assets/images/479_872.png b/lib/assets/images/479_872.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/479_872.png differ diff --git a/lib/assets/images/479_890.png b/lib/assets/images/479_890.png new file mode 100644 index 0000000..0b8d1ba Binary files /dev/null and b/lib/assets/images/479_890.png differ diff --git a/lib/assets/images/479_892.png b/lib/assets/images/479_892.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/479_892.png differ diff --git a/lib/assets/images/479_913.png b/lib/assets/images/479_913.png new file mode 100644 index 0000000..ce422f2 Binary files /dev/null and b/lib/assets/images/479_913.png differ diff --git a/lib/assets/images/479_914.png b/lib/assets/images/479_914.png new file mode 100644 index 0000000..2d29513 Binary files /dev/null and b/lib/assets/images/479_914.png differ diff --git a/lib/assets/images/479_918.png b/lib/assets/images/479_918.png new file mode 100644 index 0000000..a72d114 Binary files /dev/null and b/lib/assets/images/479_918.png differ diff --git a/lib/assets/images/479_920.png b/lib/assets/images/479_920.png new file mode 100644 index 0000000..e23780e Binary files /dev/null and b/lib/assets/images/479_920.png differ diff --git a/lib/assets/images/479_926.png b/lib/assets/images/479_926.png new file mode 100644 index 0000000..239f99e Binary files /dev/null and b/lib/assets/images/479_926.png differ diff --git a/lib/assets/images/479_931.png b/lib/assets/images/479_931.png new file mode 100644 index 0000000..73bb225 Binary files /dev/null and b/lib/assets/images/479_931.png differ diff --git a/lib/assets/images/479_932.png b/lib/assets/images/479_932.png new file mode 100644 index 0000000..c2c1183 Binary files /dev/null and b/lib/assets/images/479_932.png differ diff --git a/lib/assets/images/479_933.png b/lib/assets/images/479_933.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/479_933.png differ diff --git a/lib/assets/images/479_935.png b/lib/assets/images/479_935.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/479_935.png differ diff --git a/lib/assets/images/479_936.png b/lib/assets/images/479_936.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/479_936.png differ diff --git a/lib/assets/images/479_938.png b/lib/assets/images/479_938.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_938.png differ diff --git a/lib/assets/images/479_939.png b/lib/assets/images/479_939.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/479_939.png differ diff --git a/lib/assets/images/479_940.png b/lib/assets/images/479_940.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/479_940.png differ diff --git a/lib/assets/images/479_941.png b/lib/assets/images/479_941.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/479_941.png differ diff --git a/lib/assets/images/479_948.png b/lib/assets/images/479_948.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_948.png differ diff --git a/lib/assets/images/479_954.png b/lib/assets/images/479_954.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/479_954.png differ diff --git a/lib/assets/images/479_963.png b/lib/assets/images/479_963.png new file mode 100644 index 0000000..e8759b2 Binary files /dev/null and b/lib/assets/images/479_963.png differ diff --git a/lib/assets/images/479_964.png b/lib/assets/images/479_964.png new file mode 100644 index 0000000..96db958 Binary files /dev/null and b/lib/assets/images/479_964.png differ diff --git a/lib/assets/images/479_967.png b/lib/assets/images/479_967.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/479_967.png differ diff --git a/lib/assets/images/479_994.png b/lib/assets/images/479_994.png new file mode 100644 index 0000000..f147b31 Binary files /dev/null and b/lib/assets/images/479_994.png differ diff --git a/lib/assets/images/479_995.png b/lib/assets/images/479_995.png new file mode 100644 index 0000000..2e77bee Binary files /dev/null and b/lib/assets/images/479_995.png differ diff --git a/lib/assets/images/479_998.png b/lib/assets/images/479_998.png new file mode 100644 index 0000000..e2c9f8c Binary files /dev/null and b/lib/assets/images/479_998.png differ diff --git a/lib/assets/images/479_999.png b/lib/assets/images/479_999.png new file mode 100644 index 0000000..86f6b13 Binary files /dev/null and b/lib/assets/images/479_999.png differ diff --git a/lib/assets/images/47_4.png b/lib/assets/images/47_4.png new file mode 100644 index 0000000..191d994 Binary files /dev/null and b/lib/assets/images/47_4.png differ diff --git a/lib/assets/images/481_1256.png b/lib/assets/images/481_1256.png new file mode 100644 index 0000000..c115120 Binary files /dev/null and b/lib/assets/images/481_1256.png differ diff --git a/lib/assets/images/481_1257.png b/lib/assets/images/481_1257.png new file mode 100644 index 0000000..f4863e7 Binary files /dev/null and b/lib/assets/images/481_1257.png differ diff --git a/lib/assets/images/481_1258.png b/lib/assets/images/481_1258.png new file mode 100644 index 0000000..3be5b39 Binary files /dev/null and b/lib/assets/images/481_1258.png differ diff --git a/lib/assets/images/481_1259.png b/lib/assets/images/481_1259.png new file mode 100644 index 0000000..dc5b598 Binary files /dev/null and b/lib/assets/images/481_1259.png differ diff --git a/lib/assets/images/481_1269.png b/lib/assets/images/481_1269.png new file mode 100644 index 0000000..5334b5b Binary files /dev/null and b/lib/assets/images/481_1269.png differ diff --git a/lib/assets/images/481_1271.png b/lib/assets/images/481_1271.png new file mode 100644 index 0000000..436efb2 Binary files /dev/null and b/lib/assets/images/481_1271.png differ diff --git a/lib/assets/images/481_1272.png b/lib/assets/images/481_1272.png new file mode 100644 index 0000000..04cc712 Binary files /dev/null and b/lib/assets/images/481_1272.png differ diff --git a/lib/assets/images/481_1273.png b/lib/assets/images/481_1273.png new file mode 100644 index 0000000..313c64c Binary files /dev/null and b/lib/assets/images/481_1273.png differ diff --git a/lib/assets/images/481_1274.png b/lib/assets/images/481_1274.png new file mode 100644 index 0000000..7e877c4 Binary files /dev/null and b/lib/assets/images/481_1274.png differ diff --git a/lib/assets/images/481_1275.png b/lib/assets/images/481_1275.png new file mode 100644 index 0000000..c6f9fe0 Binary files /dev/null and b/lib/assets/images/481_1275.png differ diff --git a/lib/assets/images/481_1276.png b/lib/assets/images/481_1276.png new file mode 100644 index 0000000..b10d66b Binary files /dev/null and b/lib/assets/images/481_1276.png differ diff --git a/lib/assets/images/481_1277.png b/lib/assets/images/481_1277.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1277.png differ diff --git a/lib/assets/images/481_1278.png b/lib/assets/images/481_1278.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1278.png differ diff --git a/lib/assets/images/481_1279.png b/lib/assets/images/481_1279.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1279.png differ diff --git a/lib/assets/images/481_1280.png b/lib/assets/images/481_1280.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1280.png differ diff --git a/lib/assets/images/481_1281.png b/lib/assets/images/481_1281.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1281.png differ diff --git a/lib/assets/images/481_1282.png b/lib/assets/images/481_1282.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1282.png differ diff --git a/lib/assets/images/481_1283.png b/lib/assets/images/481_1283.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1283.png differ diff --git a/lib/assets/images/481_1284.png b/lib/assets/images/481_1284.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1284.png differ diff --git a/lib/assets/images/481_1285.png b/lib/assets/images/481_1285.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1285.png differ diff --git a/lib/assets/images/481_1286.png b/lib/assets/images/481_1286.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1286.png differ diff --git a/lib/assets/images/481_1287.png b/lib/assets/images/481_1287.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1287.png differ diff --git a/lib/assets/images/481_1288.png b/lib/assets/images/481_1288.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1288.png differ diff --git a/lib/assets/images/481_1289.png b/lib/assets/images/481_1289.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1289.png differ diff --git a/lib/assets/images/481_1290.png b/lib/assets/images/481_1290.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1290.png differ diff --git a/lib/assets/images/481_1291.png b/lib/assets/images/481_1291.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1291.png differ diff --git a/lib/assets/images/481_1292.png b/lib/assets/images/481_1292.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1292.png differ diff --git a/lib/assets/images/481_1293.png b/lib/assets/images/481_1293.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1293.png differ diff --git a/lib/assets/images/481_1294.png b/lib/assets/images/481_1294.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1294.png differ diff --git a/lib/assets/images/481_1295.png b/lib/assets/images/481_1295.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1295.png differ diff --git a/lib/assets/images/481_1296.png b/lib/assets/images/481_1296.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1296.png differ diff --git a/lib/assets/images/481_1297.png b/lib/assets/images/481_1297.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1297.png differ diff --git a/lib/assets/images/481_1298.png b/lib/assets/images/481_1298.png new file mode 100644 index 0000000..0dbc0d7 Binary files /dev/null and b/lib/assets/images/481_1298.png differ diff --git a/lib/assets/images/481_1299.png b/lib/assets/images/481_1299.png new file mode 100644 index 0000000..48f7626 Binary files /dev/null and b/lib/assets/images/481_1299.png differ diff --git a/lib/assets/images/481_1300.png b/lib/assets/images/481_1300.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1300.png differ diff --git a/lib/assets/images/481_1301.png b/lib/assets/images/481_1301.png new file mode 100644 index 0000000..0146e30 Binary files /dev/null and b/lib/assets/images/481_1301.png differ diff --git a/lib/assets/images/481_1302.png b/lib/assets/images/481_1302.png new file mode 100644 index 0000000..e301273 Binary files /dev/null and b/lib/assets/images/481_1302.png differ diff --git a/lib/assets/images/481_1303.png b/lib/assets/images/481_1303.png new file mode 100644 index 0000000..ee3ce0f Binary files /dev/null and b/lib/assets/images/481_1303.png differ diff --git a/lib/assets/images/481_1304.png b/lib/assets/images/481_1304.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1304.png differ diff --git a/lib/assets/images/481_1305.png b/lib/assets/images/481_1305.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1305.png differ diff --git a/lib/assets/images/481_1306.png b/lib/assets/images/481_1306.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1306.png differ diff --git a/lib/assets/images/481_1307.png b/lib/assets/images/481_1307.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1307.png differ diff --git a/lib/assets/images/481_1308.png b/lib/assets/images/481_1308.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1308.png differ diff --git a/lib/assets/images/481_1309.png b/lib/assets/images/481_1309.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1309.png differ diff --git a/lib/assets/images/481_1310.png b/lib/assets/images/481_1310.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1310.png differ diff --git a/lib/assets/images/481_1311.png b/lib/assets/images/481_1311.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1311.png differ diff --git a/lib/assets/images/481_1312.png b/lib/assets/images/481_1312.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1312.png differ diff --git a/lib/assets/images/481_1313.png b/lib/assets/images/481_1313.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1313.png differ diff --git a/lib/assets/images/481_1314.png b/lib/assets/images/481_1314.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1314.png differ diff --git a/lib/assets/images/481_1315.png b/lib/assets/images/481_1315.png new file mode 100644 index 0000000..1127969 Binary files /dev/null and b/lib/assets/images/481_1315.png differ diff --git a/lib/assets/images/481_1316.png b/lib/assets/images/481_1316.png new file mode 100644 index 0000000..7b6353b Binary files /dev/null and b/lib/assets/images/481_1316.png differ diff --git a/lib/assets/images/481_1317.png b/lib/assets/images/481_1317.png new file mode 100644 index 0000000..797e755 Binary files /dev/null and b/lib/assets/images/481_1317.png differ diff --git a/lib/assets/images/481_1318.png b/lib/assets/images/481_1318.png new file mode 100644 index 0000000..d2da3f0 Binary files /dev/null and b/lib/assets/images/481_1318.png differ diff --git a/lib/assets/images/481_1319.png b/lib/assets/images/481_1319.png new file mode 100644 index 0000000..ba7274d Binary files /dev/null and b/lib/assets/images/481_1319.png differ diff --git a/lib/assets/images/481_1320.png b/lib/assets/images/481_1320.png new file mode 100644 index 0000000..95c9702 Binary files /dev/null and b/lib/assets/images/481_1320.png differ diff --git a/lib/assets/images/481_1321.png b/lib/assets/images/481_1321.png new file mode 100644 index 0000000..0ee65dc Binary files /dev/null and b/lib/assets/images/481_1321.png differ diff --git a/lib/assets/images/481_1322.png b/lib/assets/images/481_1322.png new file mode 100644 index 0000000..1f9502d Binary files /dev/null and b/lib/assets/images/481_1322.png differ diff --git a/lib/assets/images/481_1323.png b/lib/assets/images/481_1323.png new file mode 100644 index 0000000..3fbdcac Binary files /dev/null and b/lib/assets/images/481_1323.png differ diff --git a/lib/assets/images/481_1324.png b/lib/assets/images/481_1324.png new file mode 100644 index 0000000..a782049 Binary files /dev/null and b/lib/assets/images/481_1324.png differ diff --git a/lib/assets/images/481_1325.png b/lib/assets/images/481_1325.png new file mode 100644 index 0000000..b9a3895 Binary files /dev/null and b/lib/assets/images/481_1325.png differ diff --git a/lib/assets/images/481_1326.png b/lib/assets/images/481_1326.png new file mode 100644 index 0000000..e583783 Binary files /dev/null and b/lib/assets/images/481_1326.png differ diff --git a/lib/assets/images/481_1327.png b/lib/assets/images/481_1327.png new file mode 100644 index 0000000..10547f4 Binary files /dev/null and b/lib/assets/images/481_1327.png differ diff --git a/lib/assets/images/481_1328.png b/lib/assets/images/481_1328.png new file mode 100644 index 0000000..ff274ba Binary files /dev/null and b/lib/assets/images/481_1328.png differ diff --git a/lib/assets/images/481_1329.png b/lib/assets/images/481_1329.png new file mode 100644 index 0000000..423446d Binary files /dev/null and b/lib/assets/images/481_1329.png differ diff --git a/lib/assets/images/481_1330.png b/lib/assets/images/481_1330.png new file mode 100644 index 0000000..9029cb6 Binary files /dev/null and b/lib/assets/images/481_1330.png differ diff --git a/lib/assets/images/481_1331.png b/lib/assets/images/481_1331.png new file mode 100644 index 0000000..51a60aa Binary files /dev/null and b/lib/assets/images/481_1331.png differ diff --git a/lib/assets/images/481_1332.png b/lib/assets/images/481_1332.png new file mode 100644 index 0000000..521828d Binary files /dev/null and b/lib/assets/images/481_1332.png differ diff --git a/lib/assets/images/481_1333.png b/lib/assets/images/481_1333.png new file mode 100644 index 0000000..1e1c4a1 Binary files /dev/null and b/lib/assets/images/481_1333.png differ diff --git a/lib/assets/images/481_1334.png b/lib/assets/images/481_1334.png new file mode 100644 index 0000000..32d15a4 Binary files /dev/null and b/lib/assets/images/481_1334.png differ diff --git a/lib/assets/images/481_1335.png b/lib/assets/images/481_1335.png new file mode 100644 index 0000000..565bd61 Binary files /dev/null and b/lib/assets/images/481_1335.png differ diff --git a/lib/assets/images/481_1336.png b/lib/assets/images/481_1336.png new file mode 100644 index 0000000..8c2940c Binary files /dev/null and b/lib/assets/images/481_1336.png differ diff --git a/lib/assets/images/481_1337.png b/lib/assets/images/481_1337.png new file mode 100644 index 0000000..feee2a0 Binary files /dev/null and b/lib/assets/images/481_1337.png differ diff --git a/lib/assets/images/481_1338.png b/lib/assets/images/481_1338.png new file mode 100644 index 0000000..0301c95 Binary files /dev/null and b/lib/assets/images/481_1338.png differ diff --git a/lib/assets/images/481_1339.png b/lib/assets/images/481_1339.png new file mode 100644 index 0000000..533d57d Binary files /dev/null and b/lib/assets/images/481_1339.png differ diff --git a/lib/assets/images/48_101.png b/lib/assets/images/48_101.png new file mode 100644 index 0000000..a68c1f8 Binary files /dev/null and b/lib/assets/images/48_101.png differ diff --git a/lib/assets/images/48_110.png b/lib/assets/images/48_110.png new file mode 100644 index 0000000..39b5aa0 Binary files /dev/null and b/lib/assets/images/48_110.png differ diff --git a/lib/assets/images/48_112.png b/lib/assets/images/48_112.png new file mode 100644 index 0000000..d53f62b Binary files /dev/null and b/lib/assets/images/48_112.png differ diff --git a/lib/assets/images/48_34.png b/lib/assets/images/48_34.png new file mode 100644 index 0000000..7e593de Binary files /dev/null and b/lib/assets/images/48_34.png differ diff --git a/lib/assets/images/48_85.png b/lib/assets/images/48_85.png new file mode 100644 index 0000000..33d94b6 Binary files /dev/null and b/lib/assets/images/48_85.png differ diff --git a/lib/assets/images/48_87.png b/lib/assets/images/48_87.png new file mode 100644 index 0000000..a68c1f8 Binary files /dev/null and b/lib/assets/images/48_87.png differ diff --git a/lib/assets/images/48_93.png b/lib/assets/images/48_93.png new file mode 100644 index 0000000..55a9bbd Binary files /dev/null and b/lib/assets/images/48_93.png differ diff --git a/lib/assets/images/48_94.png b/lib/assets/images/48_94.png new file mode 100644 index 0000000..55a9bbd Binary files /dev/null and b/lib/assets/images/48_94.png differ diff --git a/lib/assets/images/492_1439.png b/lib/assets/images/492_1439.png new file mode 100644 index 0000000..5437fbf Binary files /dev/null and b/lib/assets/images/492_1439.png differ diff --git a/lib/assets/images/492_1443.png b/lib/assets/images/492_1443.png new file mode 100644 index 0000000..21644a7 Binary files /dev/null and b/lib/assets/images/492_1443.png differ diff --git a/lib/assets/images/492_1447.png b/lib/assets/images/492_1447.png new file mode 100644 index 0000000..002c9f0 Binary files /dev/null and b/lib/assets/images/492_1447.png differ diff --git a/lib/assets/images/492_1451.png b/lib/assets/images/492_1451.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/492_1451.png differ diff --git a/lib/assets/images/492_1456.png b/lib/assets/images/492_1456.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/492_1456.png differ diff --git a/lib/assets/images/492_1463.png b/lib/assets/images/492_1463.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/492_1463.png differ diff --git a/lib/assets/images/492_1465.png b/lib/assets/images/492_1465.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/492_1465.png differ diff --git a/lib/assets/images/492_1577.png b/lib/assets/images/492_1577.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/492_1577.png differ diff --git a/lib/assets/images/492_1584.png b/lib/assets/images/492_1584.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/492_1584.png differ diff --git a/lib/assets/images/492_1585.png b/lib/assets/images/492_1585.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/492_1585.png differ diff --git a/lib/assets/images/492_1588.png b/lib/assets/images/492_1588.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/492_1588.png differ diff --git a/lib/assets/images/492_1593.png b/lib/assets/images/492_1593.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/492_1593.png differ diff --git a/lib/assets/images/492_1599.png b/lib/assets/images/492_1599.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/492_1599.png differ diff --git a/lib/assets/images/492_1600.png b/lib/assets/images/492_1600.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/492_1600.png differ diff --git a/lib/assets/images/492_1604.png b/lib/assets/images/492_1604.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/492_1604.png differ diff --git a/lib/assets/images/492_1606.png b/lib/assets/images/492_1606.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/492_1606.png differ diff --git a/lib/assets/images/492_1608.png b/lib/assets/images/492_1608.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/492_1608.png differ diff --git a/lib/assets/images/492_1614.png b/lib/assets/images/492_1614.png new file mode 100644 index 0000000..e4e6d79 Binary files /dev/null and b/lib/assets/images/492_1614.png differ diff --git a/lib/assets/images/492_1616.png b/lib/assets/images/492_1616.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/492_1616.png differ diff --git a/lib/assets/images/492_1618.png b/lib/assets/images/492_1618.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/492_1618.png differ diff --git a/lib/assets/images/492_1620.png b/lib/assets/images/492_1620.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/492_1620.png differ diff --git a/lib/assets/images/492_1624.png b/lib/assets/images/492_1624.png new file mode 100644 index 0000000..8865698 Binary files /dev/null and b/lib/assets/images/492_1624.png differ diff --git a/lib/assets/images/492_1628.png b/lib/assets/images/492_1628.png new file mode 100644 index 0000000..002c9f0 Binary files /dev/null and b/lib/assets/images/492_1628.png differ diff --git a/lib/assets/images/492_1632.png b/lib/assets/images/492_1632.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/492_1632.png differ diff --git a/lib/assets/images/492_1637.png b/lib/assets/images/492_1637.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/492_1637.png differ diff --git a/lib/assets/images/492_1644.png b/lib/assets/images/492_1644.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/492_1644.png differ diff --git a/lib/assets/images/492_1646.png b/lib/assets/images/492_1646.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/492_1646.png differ diff --git a/lib/assets/images/492_1687.png b/lib/assets/images/492_1687.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/492_1687.png differ diff --git a/lib/assets/images/492_1694.png b/lib/assets/images/492_1694.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/492_1694.png differ diff --git a/lib/assets/images/492_1695.png b/lib/assets/images/492_1695.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/492_1695.png differ diff --git a/lib/assets/images/492_1698.png b/lib/assets/images/492_1698.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/492_1698.png differ diff --git a/lib/assets/images/492_1703.png b/lib/assets/images/492_1703.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/492_1703.png differ diff --git a/lib/assets/images/492_1709.png b/lib/assets/images/492_1709.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/492_1709.png differ diff --git a/lib/assets/images/492_1710.png b/lib/assets/images/492_1710.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/492_1710.png differ diff --git a/lib/assets/images/492_1870.png b/lib/assets/images/492_1870.png new file mode 100644 index 0000000..1028713 Binary files /dev/null and b/lib/assets/images/492_1870.png differ diff --git a/lib/assets/images/492_1876.png b/lib/assets/images/492_1876.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_1876.png differ diff --git a/lib/assets/images/492_1877.png b/lib/assets/images/492_1877.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_1877.png differ diff --git a/lib/assets/images/492_1878.png b/lib/assets/images/492_1878.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_1878.png differ diff --git a/lib/assets/images/492_1879.png b/lib/assets/images/492_1879.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_1879.png differ diff --git a/lib/assets/images/492_1996.png b/lib/assets/images/492_1996.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/492_1996.png differ diff --git a/lib/assets/images/492_2003.png b/lib/assets/images/492_2003.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/492_2003.png differ diff --git a/lib/assets/images/492_2004.png b/lib/assets/images/492_2004.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/492_2004.png differ diff --git a/lib/assets/images/492_2007.png b/lib/assets/images/492_2007.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/492_2007.png differ diff --git a/lib/assets/images/492_2012.png b/lib/assets/images/492_2012.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/492_2012.png differ diff --git a/lib/assets/images/492_2018.png b/lib/assets/images/492_2018.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/492_2018.png differ diff --git a/lib/assets/images/492_2019.png b/lib/assets/images/492_2019.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/492_2019.png differ diff --git a/lib/assets/images/492_2023.png b/lib/assets/images/492_2023.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/492_2023.png differ diff --git a/lib/assets/images/492_2025.png b/lib/assets/images/492_2025.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/492_2025.png differ diff --git a/lib/assets/images/492_2027.png b/lib/assets/images/492_2027.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/492_2027.png differ diff --git a/lib/assets/images/492_2203.png b/lib/assets/images/492_2203.png new file mode 100644 index 0000000..c52b798 Binary files /dev/null and b/lib/assets/images/492_2203.png differ diff --git a/lib/assets/images/492_2209.png b/lib/assets/images/492_2209.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_2209.png differ diff --git a/lib/assets/images/492_2210.png b/lib/assets/images/492_2210.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_2210.png differ diff --git a/lib/assets/images/492_2211.png b/lib/assets/images/492_2211.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_2211.png differ diff --git a/lib/assets/images/492_2212.png b/lib/assets/images/492_2212.png new file mode 100644 index 0000000..fd50b4f Binary files /dev/null and b/lib/assets/images/492_2212.png differ diff --git a/lib/assets/images/492_2254.png b/lib/assets/images/492_2254.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/492_2254.png differ diff --git a/lib/assets/images/492_2255.png b/lib/assets/images/492_2255.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/492_2255.png differ diff --git a/lib/assets/images/492_2261.png b/lib/assets/images/492_2261.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/492_2261.png differ diff --git a/lib/assets/images/492_2262.png b/lib/assets/images/492_2262.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/492_2262.png differ diff --git a/lib/assets/images/492_2265.png b/lib/assets/images/492_2265.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/492_2265.png differ diff --git a/lib/assets/images/492_2270.png b/lib/assets/images/492_2270.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/492_2270.png differ diff --git a/lib/assets/images/492_2271.png b/lib/assets/images/492_2271.png new file mode 100644 index 0000000..b9da345 Binary files /dev/null and b/lib/assets/images/492_2271.png differ diff --git a/lib/assets/images/492_2272.png b/lib/assets/images/492_2272.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/492_2272.png differ diff --git a/lib/assets/images/492_2273.png b/lib/assets/images/492_2273.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/492_2273.png differ diff --git a/lib/assets/images/492_2274.png b/lib/assets/images/492_2274.png new file mode 100644 index 0000000..fb78b68 Binary files /dev/null and b/lib/assets/images/492_2274.png differ diff --git a/lib/assets/images/492_2276.png b/lib/assets/images/492_2276.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/492_2276.png differ diff --git a/lib/assets/images/492_2277.png b/lib/assets/images/492_2277.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/492_2277.png differ diff --git a/lib/assets/images/492_2278.png b/lib/assets/images/492_2278.png new file mode 100644 index 0000000..f0dc8de Binary files /dev/null and b/lib/assets/images/492_2278.png differ diff --git a/lib/assets/images/492_2279.png b/lib/assets/images/492_2279.png new file mode 100644 index 0000000..2aa7b35 Binary files /dev/null and b/lib/assets/images/492_2279.png differ diff --git a/lib/assets/images/492_2281.png b/lib/assets/images/492_2281.png new file mode 100644 index 0000000..3de096f Binary files /dev/null and b/lib/assets/images/492_2281.png differ diff --git a/lib/assets/images/492_2282.png b/lib/assets/images/492_2282.png new file mode 100644 index 0000000..3de096f Binary files /dev/null and b/lib/assets/images/492_2282.png differ diff --git a/lib/assets/images/492_2283.png b/lib/assets/images/492_2283.png new file mode 100644 index 0000000..3de096f Binary files /dev/null and b/lib/assets/images/492_2283.png differ diff --git a/lib/assets/images/492_2284.png b/lib/assets/images/492_2284.png new file mode 100644 index 0000000..3de096f Binary files /dev/null and b/lib/assets/images/492_2284.png differ diff --git a/lib/assets/images/492_2356.png b/lib/assets/images/492_2356.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/492_2356.png differ diff --git a/lib/assets/images/492_2358.png b/lib/assets/images/492_2358.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/492_2358.png differ diff --git a/lib/assets/images/492_2360.png b/lib/assets/images/492_2360.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/492_2360.png differ diff --git a/lib/assets/images/492_2686.png b/lib/assets/images/492_2686.png new file mode 100644 index 0000000..069c503 Binary files /dev/null and b/lib/assets/images/492_2686.png differ diff --git a/lib/assets/images/492_2704.png b/lib/assets/images/492_2704.png new file mode 100644 index 0000000..ad7efca Binary files /dev/null and b/lib/assets/images/492_2704.png differ diff --git a/lib/assets/images/492_2709.png b/lib/assets/images/492_2709.png new file mode 100644 index 0000000..7569c2a Binary files /dev/null and b/lib/assets/images/492_2709.png differ diff --git a/lib/assets/images/492_2716.png b/lib/assets/images/492_2716.png new file mode 100644 index 0000000..b14c331 Binary files /dev/null and b/lib/assets/images/492_2716.png differ diff --git a/lib/assets/images/492_2718.png b/lib/assets/images/492_2718.png new file mode 100644 index 0000000..e14fa51 Binary files /dev/null and b/lib/assets/images/492_2718.png differ diff --git a/lib/assets/images/492_2832.png b/lib/assets/images/492_2832.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/492_2832.png differ diff --git a/lib/assets/images/492_2839.png b/lib/assets/images/492_2839.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/492_2839.png differ diff --git a/lib/assets/images/492_2840.png b/lib/assets/images/492_2840.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/492_2840.png differ diff --git a/lib/assets/images/492_2843.png b/lib/assets/images/492_2843.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/492_2843.png differ diff --git a/lib/assets/images/492_2848.png b/lib/assets/images/492_2848.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/492_2848.png differ diff --git a/lib/assets/images/492_2854.png b/lib/assets/images/492_2854.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/492_2854.png differ diff --git a/lib/assets/images/492_2855.png b/lib/assets/images/492_2855.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/492_2855.png differ diff --git a/lib/assets/images/492_2859.png b/lib/assets/images/492_2859.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/492_2859.png differ diff --git a/lib/assets/images/492_2861.png b/lib/assets/images/492_2861.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/492_2861.png differ diff --git a/lib/assets/images/492_2863.png b/lib/assets/images/492_2863.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/492_2863.png differ diff --git a/lib/assets/images/492_2881.png b/lib/assets/images/492_2881.png new file mode 100644 index 0000000..41d1cc8 Binary files /dev/null and b/lib/assets/images/492_2881.png differ diff --git a/lib/assets/images/492_2929.png b/lib/assets/images/492_2929.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/492_2929.png differ diff --git a/lib/assets/images/492_2931.png b/lib/assets/images/492_2931.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/492_2931.png differ diff --git a/lib/assets/images/492_2933.png b/lib/assets/images/492_2933.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/492_2933.png differ diff --git a/lib/assets/images/492_2942.png b/lib/assets/images/492_2942.png new file mode 100644 index 0000000..95bd730 Binary files /dev/null and b/lib/assets/images/492_2942.png differ diff --git a/lib/assets/images/492_2943.png b/lib/assets/images/492_2943.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_2943.png differ diff --git a/lib/assets/images/492_2945.png b/lib/assets/images/492_2945.png new file mode 100644 index 0000000..c312329 Binary files /dev/null and b/lib/assets/images/492_2945.png differ diff --git a/lib/assets/images/492_2948.png b/lib/assets/images/492_2948.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/492_2948.png differ diff --git a/lib/assets/images/492_2951.png b/lib/assets/images/492_2951.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/492_2951.png differ diff --git a/lib/assets/images/492_2954.png b/lib/assets/images/492_2954.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/492_2954.png differ diff --git a/lib/assets/images/492_2957.png b/lib/assets/images/492_2957.png new file mode 100644 index 0000000..082ae07 Binary files /dev/null and b/lib/assets/images/492_2957.png differ diff --git a/lib/assets/images/492_2974.png b/lib/assets/images/492_2974.png new file mode 100644 index 0000000..d7413d2 Binary files /dev/null and b/lib/assets/images/492_2974.png differ diff --git a/lib/assets/images/492_2976.png b/lib/assets/images/492_2976.png new file mode 100644 index 0000000..d946152 Binary files /dev/null and b/lib/assets/images/492_2976.png differ diff --git a/lib/assets/images/492_2978.png b/lib/assets/images/492_2978.png new file mode 100644 index 0000000..3a21d09 Binary files /dev/null and b/lib/assets/images/492_2978.png differ diff --git a/lib/assets/images/492_2982.png b/lib/assets/images/492_2982.png new file mode 100644 index 0000000..61dc9df Binary files /dev/null and b/lib/assets/images/492_2982.png differ diff --git a/lib/assets/images/492_2983.png b/lib/assets/images/492_2983.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_2983.png differ diff --git a/lib/assets/images/492_2985.png b/lib/assets/images/492_2985.png new file mode 100644 index 0000000..aae9946 Binary files /dev/null and b/lib/assets/images/492_2985.png differ diff --git a/lib/assets/images/492_2988.png b/lib/assets/images/492_2988.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_2988.png differ diff --git a/lib/assets/images/492_2991.png b/lib/assets/images/492_2991.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_2991.png differ diff --git a/lib/assets/images/492_2994.png b/lib/assets/images/492_2994.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_2994.png differ diff --git a/lib/assets/images/492_2997.png b/lib/assets/images/492_2997.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_2997.png differ diff --git a/lib/assets/images/492_3001.png b/lib/assets/images/492_3001.png new file mode 100644 index 0000000..035cb03 Binary files /dev/null and b/lib/assets/images/492_3001.png differ diff --git a/lib/assets/images/492_3002.png b/lib/assets/images/492_3002.png new file mode 100644 index 0000000..16f474a Binary files /dev/null and b/lib/assets/images/492_3002.png differ diff --git a/lib/assets/images/492_3006.png b/lib/assets/images/492_3006.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/492_3006.png differ diff --git a/lib/assets/images/492_3007.png b/lib/assets/images/492_3007.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/492_3007.png differ diff --git a/lib/assets/images/492_3009.png b/lib/assets/images/492_3009.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3009.png differ diff --git a/lib/assets/images/492_3010.png b/lib/assets/images/492_3010.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3010.png differ diff --git a/lib/assets/images/492_3011.png b/lib/assets/images/492_3011.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3011.png differ diff --git a/lib/assets/images/492_3012.png b/lib/assets/images/492_3012.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/492_3012.png differ diff --git a/lib/assets/images/492_3013.png b/lib/assets/images/492_3013.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/492_3013.png differ diff --git a/lib/assets/images/492_3017.png b/lib/assets/images/492_3017.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/492_3017.png differ diff --git a/lib/assets/images/492_3022.png b/lib/assets/images/492_3022.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/492_3022.png differ diff --git a/lib/assets/images/492_3028.png b/lib/assets/images/492_3028.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/492_3028.png differ diff --git a/lib/assets/images/492_3035.png b/lib/assets/images/492_3035.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/492_3035.png differ diff --git a/lib/assets/images/492_3121.png b/lib/assets/images/492_3121.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_3121.png differ diff --git a/lib/assets/images/492_3122.png b/lib/assets/images/492_3122.png new file mode 100644 index 0000000..bf5d700 Binary files /dev/null and b/lib/assets/images/492_3122.png differ diff --git a/lib/assets/images/492_3123.png b/lib/assets/images/492_3123.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_3123.png differ diff --git a/lib/assets/images/492_3125.png b/lib/assets/images/492_3125.png new file mode 100644 index 0000000..aae9946 Binary files /dev/null and b/lib/assets/images/492_3125.png differ diff --git a/lib/assets/images/492_3128.png b/lib/assets/images/492_3128.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3128.png differ diff --git a/lib/assets/images/492_3131.png b/lib/assets/images/492_3131.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3131.png differ diff --git a/lib/assets/images/492_3134.png b/lib/assets/images/492_3134.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3134.png differ diff --git a/lib/assets/images/492_3137.png b/lib/assets/images/492_3137.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3137.png differ diff --git a/lib/assets/images/492_3141.png b/lib/assets/images/492_3141.png new file mode 100644 index 0000000..035cb03 Binary files /dev/null and b/lib/assets/images/492_3141.png differ diff --git a/lib/assets/images/492_3142.png b/lib/assets/images/492_3142.png new file mode 100644 index 0000000..16f474a Binary files /dev/null and b/lib/assets/images/492_3142.png differ diff --git a/lib/assets/images/492_3146.png b/lib/assets/images/492_3146.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/492_3146.png differ diff --git a/lib/assets/images/492_3147.png b/lib/assets/images/492_3147.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/492_3147.png differ diff --git a/lib/assets/images/492_3149.png b/lib/assets/images/492_3149.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3149.png differ diff --git a/lib/assets/images/492_3150.png b/lib/assets/images/492_3150.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3150.png differ diff --git a/lib/assets/images/492_3151.png b/lib/assets/images/492_3151.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3151.png differ diff --git a/lib/assets/images/492_3152.png b/lib/assets/images/492_3152.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/492_3152.png differ diff --git a/lib/assets/images/492_3153.png b/lib/assets/images/492_3153.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/492_3153.png differ diff --git a/lib/assets/images/492_3157.png b/lib/assets/images/492_3157.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/492_3157.png differ diff --git a/lib/assets/images/492_3162.png b/lib/assets/images/492_3162.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/492_3162.png differ diff --git a/lib/assets/images/492_3168.png b/lib/assets/images/492_3168.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/492_3168.png differ diff --git a/lib/assets/images/492_3175.png b/lib/assets/images/492_3175.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/492_3175.png differ diff --git a/lib/assets/images/492_3248.png b/lib/assets/images/492_3248.png new file mode 100644 index 0000000..91fe80e Binary files /dev/null and b/lib/assets/images/492_3248.png differ diff --git a/lib/assets/images/492_3249.png b/lib/assets/images/492_3249.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_3249.png differ diff --git a/lib/assets/images/492_3251.png b/lib/assets/images/492_3251.png new file mode 100644 index 0000000..aae9946 Binary files /dev/null and b/lib/assets/images/492_3251.png differ diff --git a/lib/assets/images/492_3254.png b/lib/assets/images/492_3254.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3254.png differ diff --git a/lib/assets/images/492_3257.png b/lib/assets/images/492_3257.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3257.png differ diff --git a/lib/assets/images/492_3260.png b/lib/assets/images/492_3260.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3260.png differ diff --git a/lib/assets/images/492_3263.png b/lib/assets/images/492_3263.png new file mode 100644 index 0000000..29a6907 Binary files /dev/null and b/lib/assets/images/492_3263.png differ diff --git a/lib/assets/images/492_3267.png b/lib/assets/images/492_3267.png new file mode 100644 index 0000000..035cb03 Binary files /dev/null and b/lib/assets/images/492_3267.png differ diff --git a/lib/assets/images/492_3268.png b/lib/assets/images/492_3268.png new file mode 100644 index 0000000..16f474a Binary files /dev/null and b/lib/assets/images/492_3268.png differ diff --git a/lib/assets/images/492_3272.png b/lib/assets/images/492_3272.png new file mode 100644 index 0000000..3e8e871 Binary files /dev/null and b/lib/assets/images/492_3272.png differ diff --git a/lib/assets/images/492_3273.png b/lib/assets/images/492_3273.png new file mode 100644 index 0000000..7ddadc0 Binary files /dev/null and b/lib/assets/images/492_3273.png differ diff --git a/lib/assets/images/492_3275.png b/lib/assets/images/492_3275.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3275.png differ diff --git a/lib/assets/images/492_3276.png b/lib/assets/images/492_3276.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3276.png differ diff --git a/lib/assets/images/492_3277.png b/lib/assets/images/492_3277.png new file mode 100644 index 0000000..376718e Binary files /dev/null and b/lib/assets/images/492_3277.png differ diff --git a/lib/assets/images/492_3278.png b/lib/assets/images/492_3278.png new file mode 100644 index 0000000..3f32661 Binary files /dev/null and b/lib/assets/images/492_3278.png differ diff --git a/lib/assets/images/492_3279.png b/lib/assets/images/492_3279.png new file mode 100644 index 0000000..5799b0f Binary files /dev/null and b/lib/assets/images/492_3279.png differ diff --git a/lib/assets/images/492_3283.png b/lib/assets/images/492_3283.png new file mode 100644 index 0000000..e781ffa Binary files /dev/null and b/lib/assets/images/492_3283.png differ diff --git a/lib/assets/images/492_3288.png b/lib/assets/images/492_3288.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/492_3288.png differ diff --git a/lib/assets/images/492_3294.png b/lib/assets/images/492_3294.png new file mode 100644 index 0000000..484f74e Binary files /dev/null and b/lib/assets/images/492_3294.png differ diff --git a/lib/assets/images/492_3301.png b/lib/assets/images/492_3301.png new file mode 100644 index 0000000..5568a3f Binary files /dev/null and b/lib/assets/images/492_3301.png differ diff --git a/lib/assets/images/492_3306.png b/lib/assets/images/492_3306.png new file mode 100644 index 0000000..c10a287 Binary files /dev/null and b/lib/assets/images/492_3306.png differ diff --git a/lib/assets/images/492_3320.png b/lib/assets/images/492_3320.png new file mode 100644 index 0000000..c309ad9 Binary files /dev/null and b/lib/assets/images/492_3320.png differ diff --git a/lib/assets/images/492_3331.png b/lib/assets/images/492_3331.png new file mode 100644 index 0000000..7224a1c Binary files /dev/null and b/lib/assets/images/492_3331.png differ diff --git a/lib/assets/images/492_3332.png b/lib/assets/images/492_3332.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_3332.png differ diff --git a/lib/assets/images/492_3366.png b/lib/assets/images/492_3366.png new file mode 100644 index 0000000..4ef2538 Binary files /dev/null and b/lib/assets/images/492_3366.png differ diff --git a/lib/assets/images/492_3397.png b/lib/assets/images/492_3397.png new file mode 100644 index 0000000..e2c9f8c Binary files /dev/null and b/lib/assets/images/492_3397.png differ diff --git a/lib/assets/images/492_3415.png b/lib/assets/images/492_3415.png new file mode 100644 index 0000000..800d39b Binary files /dev/null and b/lib/assets/images/492_3415.png differ diff --git a/lib/assets/images/492_3416.png b/lib/assets/images/492_3416.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/492_3416.png differ diff --git a/lib/assets/images/492_3450.png b/lib/assets/images/492_3450.png new file mode 100644 index 0000000..4ef2538 Binary files /dev/null and b/lib/assets/images/492_3450.png differ diff --git a/lib/assets/images/500_416.png b/lib/assets/images/500_416.png new file mode 100644 index 0000000..474e9f6 Binary files /dev/null and b/lib/assets/images/500_416.png differ diff --git a/lib/assets/images/500_421.png b/lib/assets/images/500_421.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/500_421.png differ diff --git a/lib/assets/images/500_429.png b/lib/assets/images/500_429.png new file mode 100644 index 0000000..349f389 Binary files /dev/null and b/lib/assets/images/500_429.png differ diff --git a/lib/assets/images/500_489.png b/lib/assets/images/500_489.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/500_489.png differ diff --git a/lib/assets/images/500_496.png b/lib/assets/images/500_496.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/500_496.png differ diff --git a/lib/assets/images/500_497.png b/lib/assets/images/500_497.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/500_497.png differ diff --git a/lib/assets/images/500_500.png b/lib/assets/images/500_500.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/500_500.png differ diff --git a/lib/assets/images/500_505.png b/lib/assets/images/500_505.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/500_505.png differ diff --git a/lib/assets/images/500_511.png b/lib/assets/images/500_511.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/500_511.png differ diff --git a/lib/assets/images/500_512.png b/lib/assets/images/500_512.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/500_512.png differ diff --git a/lib/assets/images/501_519.png b/lib/assets/images/501_519.png new file mode 100644 index 0000000..04ab5a6 Binary files /dev/null and b/lib/assets/images/501_519.png differ diff --git a/lib/assets/images/501_524.png b/lib/assets/images/501_524.png new file mode 100644 index 0000000..1ef64b6 Binary files /dev/null and b/lib/assets/images/501_524.png differ diff --git a/lib/assets/images/501_532.png b/lib/assets/images/501_532.png new file mode 100644 index 0000000..349f389 Binary files /dev/null and b/lib/assets/images/501_532.png differ diff --git a/lib/assets/images/501_539.png b/lib/assets/images/501_539.png new file mode 100644 index 0000000..45aa8ae Binary files /dev/null and b/lib/assets/images/501_539.png differ diff --git a/lib/assets/images/523_414.png b/lib/assets/images/523_414.png new file mode 100644 index 0000000..ecd389e Binary files /dev/null and b/lib/assets/images/523_414.png differ diff --git a/lib/assets/images/523_416.png b/lib/assets/images/523_416.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/523_416.png differ diff --git a/lib/assets/images/523_418.png b/lib/assets/images/523_418.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/523_418.png differ diff --git a/lib/assets/images/523_420.png b/lib/assets/images/523_420.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/523_420.png differ diff --git a/lib/assets/images/532_437.png b/lib/assets/images/532_437.png new file mode 100644 index 0000000..c4b59fd Binary files /dev/null and b/lib/assets/images/532_437.png differ diff --git a/lib/assets/images/532_441.png b/lib/assets/images/532_441.png new file mode 100644 index 0000000..3fb2f2e Binary files /dev/null and b/lib/assets/images/532_441.png differ diff --git a/lib/assets/images/532_445.png b/lib/assets/images/532_445.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_445.png differ diff --git a/lib/assets/images/532_449.png b/lib/assets/images/532_449.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_449.png differ diff --git a/lib/assets/images/532_453.png b/lib/assets/images/532_453.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_453.png differ diff --git a/lib/assets/images/532_457.png b/lib/assets/images/532_457.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_457.png differ diff --git a/lib/assets/images/532_463.png b/lib/assets/images/532_463.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/532_463.png differ diff --git a/lib/assets/images/532_468.png b/lib/assets/images/532_468.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/532_468.png differ diff --git a/lib/assets/images/532_475.png b/lib/assets/images/532_475.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/532_475.png differ diff --git a/lib/assets/images/532_477.png b/lib/assets/images/532_477.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/532_477.png differ diff --git a/lib/assets/images/532_481.png b/lib/assets/images/532_481.png new file mode 100644 index 0000000..9f4fa5f Binary files /dev/null and b/lib/assets/images/532_481.png differ diff --git a/lib/assets/images/532_490.png b/lib/assets/images/532_490.png new file mode 100644 index 0000000..82804fc Binary files /dev/null and b/lib/assets/images/532_490.png differ diff --git a/lib/assets/images/532_494.png b/lib/assets/images/532_494.png new file mode 100644 index 0000000..1610b86 Binary files /dev/null and b/lib/assets/images/532_494.png differ diff --git a/lib/assets/images/532_498.png b/lib/assets/images/532_498.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_498.png differ diff --git a/lib/assets/images/532_502.png b/lib/assets/images/532_502.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_502.png differ diff --git a/lib/assets/images/532_506.png b/lib/assets/images/532_506.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_506.png differ diff --git a/lib/assets/images/532_510.png b/lib/assets/images/532_510.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_510.png differ diff --git a/lib/assets/images/532_516.png b/lib/assets/images/532_516.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/532_516.png differ diff --git a/lib/assets/images/532_521.png b/lib/assets/images/532_521.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/532_521.png differ diff --git a/lib/assets/images/532_528.png b/lib/assets/images/532_528.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/532_528.png differ diff --git a/lib/assets/images/532_530.png b/lib/assets/images/532_530.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/532_530.png differ diff --git a/lib/assets/images/532_534.png b/lib/assets/images/532_534.png new file mode 100644 index 0000000..9f4fa5f Binary files /dev/null and b/lib/assets/images/532_534.png differ diff --git a/lib/assets/images/532_544.png b/lib/assets/images/532_544.png new file mode 100644 index 0000000..3fb2f2e Binary files /dev/null and b/lib/assets/images/532_544.png differ diff --git a/lib/assets/images/532_548.png b/lib/assets/images/532_548.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_548.png differ diff --git a/lib/assets/images/532_552.png b/lib/assets/images/532_552.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_552.png differ diff --git a/lib/assets/images/532_556.png b/lib/assets/images/532_556.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_556.png differ diff --git a/lib/assets/images/532_560.png b/lib/assets/images/532_560.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_560.png differ diff --git a/lib/assets/images/532_565.png b/lib/assets/images/532_565.png new file mode 100644 index 0000000..9f4fa5f Binary files /dev/null and b/lib/assets/images/532_565.png differ diff --git a/lib/assets/images/532_607.png b/lib/assets/images/532_607.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/532_607.png differ diff --git a/lib/assets/images/532_614.png b/lib/assets/images/532_614.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/532_614.png differ diff --git a/lib/assets/images/532_615.png b/lib/assets/images/532_615.png new file mode 100644 index 0000000..5d3ec81 Binary files /dev/null and b/lib/assets/images/532_615.png differ diff --git a/lib/assets/images/532_618.png b/lib/assets/images/532_618.png new file mode 100644 index 0000000..e6d0f9c Binary files /dev/null and b/lib/assets/images/532_618.png differ diff --git a/lib/assets/images/532_623.png b/lib/assets/images/532_623.png new file mode 100644 index 0000000..d5ce72e Binary files /dev/null and b/lib/assets/images/532_623.png differ diff --git a/lib/assets/images/532_629.png b/lib/assets/images/532_629.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/532_629.png differ diff --git a/lib/assets/images/532_630.png b/lib/assets/images/532_630.png new file mode 100644 index 0000000..5e14b6c Binary files /dev/null and b/lib/assets/images/532_630.png differ diff --git a/lib/assets/images/532_634.png b/lib/assets/images/532_634.png new file mode 100644 index 0000000..ad7efca Binary files /dev/null and b/lib/assets/images/532_634.png differ diff --git a/lib/assets/images/532_639.png b/lib/assets/images/532_639.png new file mode 100644 index 0000000..7569c2a Binary files /dev/null and b/lib/assets/images/532_639.png differ diff --git a/lib/assets/images/532_646.png b/lib/assets/images/532_646.png new file mode 100644 index 0000000..b14c331 Binary files /dev/null and b/lib/assets/images/532_646.png differ diff --git a/lib/assets/images/532_648.png b/lib/assets/images/532_648.png new file mode 100644 index 0000000..e14fa51 Binary files /dev/null and b/lib/assets/images/532_648.png differ diff --git a/lib/assets/images/532_651.png b/lib/assets/images/532_651.png new file mode 100644 index 0000000..3fb2f2e Binary files /dev/null and b/lib/assets/images/532_651.png differ diff --git a/lib/assets/images/532_655.png b/lib/assets/images/532_655.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_655.png differ diff --git a/lib/assets/images/532_659.png b/lib/assets/images/532_659.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_659.png differ diff --git a/lib/assets/images/532_663.png b/lib/assets/images/532_663.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_663.png differ diff --git a/lib/assets/images/532_667.png b/lib/assets/images/532_667.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_667.png differ diff --git a/lib/assets/images/532_672.png b/lib/assets/images/532_672.png new file mode 100644 index 0000000..9f4fa5f Binary files /dev/null and b/lib/assets/images/532_672.png differ diff --git a/lib/assets/images/532_676.png b/lib/assets/images/532_676.png new file mode 100644 index 0000000..3fb2f2e Binary files /dev/null and b/lib/assets/images/532_676.png differ diff --git a/lib/assets/images/532_680.png b/lib/assets/images/532_680.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_680.png differ diff --git a/lib/assets/images/532_684.png b/lib/assets/images/532_684.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_684.png differ diff --git a/lib/assets/images/532_688.png b/lib/assets/images/532_688.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_688.png differ diff --git a/lib/assets/images/532_692.png b/lib/assets/images/532_692.png new file mode 100644 index 0000000..a72b92f Binary files /dev/null and b/lib/assets/images/532_692.png differ diff --git a/lib/assets/images/532_698.png b/lib/assets/images/532_698.png new file mode 100644 index 0000000..c995256 Binary files /dev/null and b/lib/assets/images/532_698.png differ diff --git a/lib/assets/images/532_703.png b/lib/assets/images/532_703.png new file mode 100644 index 0000000..8f9dc07 Binary files /dev/null and b/lib/assets/images/532_703.png differ diff --git a/lib/assets/images/532_710.png b/lib/assets/images/532_710.png new file mode 100644 index 0000000..8739d80 Binary files /dev/null and b/lib/assets/images/532_710.png differ diff --git a/lib/assets/images/532_712.png b/lib/assets/images/532_712.png new file mode 100644 index 0000000..9bb0c99 Binary files /dev/null and b/lib/assets/images/532_712.png differ diff --git a/lib/assets/images/532_716.png b/lib/assets/images/532_716.png new file mode 100644 index 0000000..9f4fa5f Binary files /dev/null and b/lib/assets/images/532_716.png differ diff --git a/lib/assets/images/796_408.png b/lib/assets/images/796_408.png new file mode 100644 index 0000000..44f4f01 Binary files /dev/null and b/lib/assets/images/796_408.png differ diff --git a/lib/assets/images/815_438.png b/lib/assets/images/815_438.png new file mode 100644 index 0000000..674b577 Binary files /dev/null and b/lib/assets/images/815_438.png differ diff --git a/lib/assets/images/95_25.png b/lib/assets/images/95_25.png new file mode 100644 index 0000000..4c9c086 Binary files /dev/null and b/lib/assets/images/95_25.png differ diff --git a/lib/assets/images/I133_27;75_15.png b/lib/assets/images/I133_27;75_15.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I133_27;75_15.png differ diff --git a/lib/assets/images/I133_27;75_16.png b/lib/assets/images/I133_27;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I133_27;75_16.png differ diff --git a/lib/assets/images/I133_27;75_18.png b/lib/assets/images/I133_27;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I133_27;75_18.png differ diff --git a/lib/assets/images/I133_27;75_3.png b/lib/assets/images/I133_27;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I133_27;75_3.png differ diff --git a/lib/assets/images/I137_28;75_16.png b/lib/assets/images/I137_28;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I137_28;75_16.png differ diff --git a/lib/assets/images/I137_28;75_18.png b/lib/assets/images/I137_28;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I137_28;75_18.png differ diff --git a/lib/assets/images/I137_28;75_3.png b/lib/assets/images/I137_28;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I137_28;75_3.png differ diff --git a/lib/assets/images/I149_33;75_16.png b/lib/assets/images/I149_33;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I149_33;75_16.png differ diff --git a/lib/assets/images/I149_33;75_18.png b/lib/assets/images/I149_33;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I149_33;75_18.png differ diff --git a/lib/assets/images/I149_33;75_3.png b/lib/assets/images/I149_33;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I149_33;75_3.png differ diff --git a/lib/assets/images/I159_586;75_16.png b/lib/assets/images/I159_586;75_16.png new file mode 100644 index 0000000..0fe3d99 Binary files /dev/null and b/lib/assets/images/I159_586;75_16.png differ diff --git a/lib/assets/images/I159_586;75_18.png b/lib/assets/images/I159_586;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I159_586;75_18.png differ diff --git a/lib/assets/images/I159_586;75_3.png b/lib/assets/images/I159_586;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I159_586;75_3.png differ diff --git a/lib/assets/images/I159_96;75_16.png b/lib/assets/images/I159_96;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I159_96;75_16.png differ diff --git a/lib/assets/images/I159_96;75_18.png b/lib/assets/images/I159_96;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I159_96;75_18.png differ diff --git a/lib/assets/images/I159_96;75_3.png b/lib/assets/images/I159_96;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I159_96;75_3.png differ diff --git a/lib/assets/images/I201_335;75_16.png b/lib/assets/images/I201_335;75_16.png new file mode 100644 index 0000000..18f5f60 Binary files /dev/null and b/lib/assets/images/I201_335;75_16.png differ diff --git a/lib/assets/images/I201_335;75_18.png b/lib/assets/images/I201_335;75_18.png new file mode 100644 index 0000000..3a21d09 Binary files /dev/null and b/lib/assets/images/I201_335;75_18.png differ diff --git a/lib/assets/images/I201_335;75_3.png b/lib/assets/images/I201_335;75_3.png new file mode 100644 index 0000000..d7413d2 Binary files /dev/null and b/lib/assets/images/I201_335;75_3.png differ diff --git a/lib/assets/images/I201_99;75_16.png b/lib/assets/images/I201_99;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I201_99;75_16.png differ diff --git a/lib/assets/images/I201_99;75_18.png b/lib/assets/images/I201_99;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I201_99;75_18.png differ diff --git a/lib/assets/images/I201_99;75_3.png b/lib/assets/images/I201_99;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I201_99;75_3.png differ diff --git a/lib/assets/images/I203_229;75_16.png b/lib/assets/images/I203_229;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I203_229;75_16.png differ diff --git a/lib/assets/images/I203_229;75_18.png b/lib/assets/images/I203_229;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I203_229;75_18.png differ diff --git a/lib/assets/images/I203_229;75_3.png b/lib/assets/images/I203_229;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I203_229;75_3.png differ diff --git a/lib/assets/images/I203_91;75_16.png b/lib/assets/images/I203_91;75_16.png new file mode 100644 index 0000000..d946152 Binary files /dev/null and b/lib/assets/images/I203_91;75_16.png differ diff --git a/lib/assets/images/I203_91;75_18.png b/lib/assets/images/I203_91;75_18.png new file mode 100644 index 0000000..3a21d09 Binary files /dev/null and b/lib/assets/images/I203_91;75_18.png differ diff --git a/lib/assets/images/I203_91;75_3.png b/lib/assets/images/I203_91;75_3.png new file mode 100644 index 0000000..d7413d2 Binary files /dev/null and b/lib/assets/images/I203_91;75_3.png differ diff --git a/lib/assets/images/I218_87;75_16.png b/lib/assets/images/I218_87;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I218_87;75_16.png differ diff --git a/lib/assets/images/I218_87;75_18.png b/lib/assets/images/I218_87;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I218_87;75_18.png differ diff --git a/lib/assets/images/I218_87;75_3.png b/lib/assets/images/I218_87;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I218_87;75_3.png differ diff --git a/lib/assets/images/I228_357;75_16.png b/lib/assets/images/I228_357;75_16.png new file mode 100644 index 0000000..d946152 Binary files /dev/null and b/lib/assets/images/I228_357;75_16.png differ diff --git a/lib/assets/images/I228_357;75_18.png b/lib/assets/images/I228_357;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I228_357;75_18.png differ diff --git a/lib/assets/images/I228_357;75_3.png b/lib/assets/images/I228_357;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I228_357;75_3.png differ diff --git a/lib/assets/images/I229_436;75_16.png b/lib/assets/images/I229_436;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I229_436;75_16.png differ diff --git a/lib/assets/images/I229_436;75_18.png b/lib/assets/images/I229_436;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I229_436;75_18.png differ diff --git a/lib/assets/images/I229_436;75_3.png b/lib/assets/images/I229_436;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I229_436;75_3.png differ diff --git a/lib/assets/images/I253_860;75_16.png b/lib/assets/images/I253_860;75_16.png new file mode 100644 index 0000000..0fe3d99 Binary files /dev/null and b/lib/assets/images/I253_860;75_16.png differ diff --git a/lib/assets/images/I253_860;75_18.png b/lib/assets/images/I253_860;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I253_860;75_18.png differ diff --git a/lib/assets/images/I253_860;75_3.png b/lib/assets/images/I253_860;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I253_860;75_3.png differ diff --git a/lib/assets/images/I308_189;75_16.png b/lib/assets/images/I308_189;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I308_189;75_16.png differ diff --git a/lib/assets/images/I308_189;75_18.png b/lib/assets/images/I308_189;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I308_189;75_18.png differ diff --git a/lib/assets/images/I308_189;75_3.png b/lib/assets/images/I308_189;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I308_189;75_3.png differ diff --git a/lib/assets/images/I308_392;75_16.png b/lib/assets/images/I308_392;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I308_392;75_16.png differ diff --git a/lib/assets/images/I308_392;75_18.png b/lib/assets/images/I308_392;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I308_392;75_18.png differ diff --git a/lib/assets/images/I308_392;75_3.png b/lib/assets/images/I308_392;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I308_392;75_3.png differ diff --git a/lib/assets/images/I308_430;75_16.png b/lib/assets/images/I308_430;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I308_430;75_16.png differ diff --git a/lib/assets/images/I308_430;75_18.png b/lib/assets/images/I308_430;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I308_430;75_18.png differ diff --git a/lib/assets/images/I308_430;75_3.png b/lib/assets/images/I308_430;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I308_430;75_3.png differ diff --git a/lib/assets/images/I443_155;75_16.png b/lib/assets/images/I443_155;75_16.png new file mode 100644 index 0000000..0fe3d99 Binary files /dev/null and b/lib/assets/images/I443_155;75_16.png differ diff --git a/lib/assets/images/I443_155;75_18.png b/lib/assets/images/I443_155;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I443_155;75_18.png differ diff --git a/lib/assets/images/I443_155;75_3.png b/lib/assets/images/I443_155;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I443_155;75_3.png differ diff --git a/lib/assets/images/I479_1001;75_16.png b/lib/assets/images/I479_1001;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I479_1001;75_16.png differ diff --git a/lib/assets/images/I479_1001;75_18.png b/lib/assets/images/I479_1001;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I479_1001;75_18.png differ diff --git a/lib/assets/images/I479_1001;75_3.png b/lib/assets/images/I479_1001;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I479_1001;75_3.png differ diff --git a/lib/assets/images/I479_1051;75_16.png b/lib/assets/images/I479_1051;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I479_1051;75_16.png differ diff --git a/lib/assets/images/I479_1051;75_18.png b/lib/assets/images/I479_1051;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I479_1051;75_18.png differ diff --git a/lib/assets/images/I479_1051;75_3.png b/lib/assets/images/I479_1051;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I479_1051;75_3.png differ diff --git a/lib/assets/images/I479_119;75_16.png b/lib/assets/images/I479_119;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_119;75_16.png differ diff --git a/lib/assets/images/I479_119;75_18.png b/lib/assets/images/I479_119;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_119;75_18.png differ diff --git a/lib/assets/images/I479_119;75_3.png b/lib/assets/images/I479_119;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_119;75_3.png differ diff --git a/lib/assets/images/I479_171;75_16.png b/lib/assets/images/I479_171;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_171;75_16.png differ diff --git a/lib/assets/images/I479_171;75_18.png b/lib/assets/images/I479_171;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_171;75_18.png differ diff --git a/lib/assets/images/I479_171;75_3.png b/lib/assets/images/I479_171;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_171;75_3.png differ diff --git a/lib/assets/images/I479_266;75_16.png b/lib/assets/images/I479_266;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_266;75_16.png differ diff --git a/lib/assets/images/I479_266;75_18.png b/lib/assets/images/I479_266;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_266;75_18.png differ diff --git a/lib/assets/images/I479_266;75_3.png b/lib/assets/images/I479_266;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_266;75_3.png differ diff --git a/lib/assets/images/I479_308;75_16.png b/lib/assets/images/I479_308;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_308;75_16.png differ diff --git a/lib/assets/images/I479_308;75_18.png b/lib/assets/images/I479_308;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_308;75_18.png differ diff --git a/lib/assets/images/I479_308;75_3.png b/lib/assets/images/I479_308;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_308;75_3.png differ diff --git a/lib/assets/images/I479_366;75_16.png b/lib/assets/images/I479_366;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_366;75_16.png differ diff --git a/lib/assets/images/I479_366;75_18.png b/lib/assets/images/I479_366;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_366;75_18.png differ diff --git a/lib/assets/images/I479_366;75_3.png b/lib/assets/images/I479_366;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_366;75_3.png differ diff --git a/lib/assets/images/I479_377;159_366.png b/lib/assets/images/I479_377;159_366.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/I479_377;159_366.png differ diff --git a/lib/assets/images/I479_377;159_368.png b/lib/assets/images/I479_377;159_368.png new file mode 100644 index 0000000..f0dc8de Binary files /dev/null and b/lib/assets/images/I479_377;159_368.png differ diff --git a/lib/assets/images/I479_377;159_369.png b/lib/assets/images/I479_377;159_369.png new file mode 100644 index 0000000..2aa7b35 Binary files /dev/null and b/lib/assets/images/I479_377;159_369.png differ diff --git a/lib/assets/images/I479_377;159_371.png b/lib/assets/images/I479_377;159_371.png new file mode 100644 index 0000000..b9da345 Binary files /dev/null and b/lib/assets/images/I479_377;159_371.png differ diff --git a/lib/assets/images/I479_377;159_372.png b/lib/assets/images/I479_377;159_372.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/I479_377;159_372.png differ diff --git a/lib/assets/images/I479_377;159_373.png b/lib/assets/images/I479_377;159_373.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/I479_377;159_373.png differ diff --git a/lib/assets/images/I479_377;159_374.png b/lib/assets/images/I479_377;159_374.png new file mode 100644 index 0000000..fb78b68 Binary files /dev/null and b/lib/assets/images/I479_377;159_374.png differ diff --git a/lib/assets/images/I479_377;159_377.png b/lib/assets/images/I479_377;159_377.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/I479_377;159_377.png differ diff --git a/lib/assets/images/I479_377;159_382.png b/lib/assets/images/I479_377;159_382.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/I479_377;159_382.png differ diff --git a/lib/assets/images/I479_441;75_16.png b/lib/assets/images/I479_441;75_16.png new file mode 100644 index 0000000..d946152 Binary files /dev/null and b/lib/assets/images/I479_441;75_16.png differ diff --git a/lib/assets/images/I479_441;75_18.png b/lib/assets/images/I479_441;75_18.png new file mode 100644 index 0000000..3a21d09 Binary files /dev/null and b/lib/assets/images/I479_441;75_18.png differ diff --git a/lib/assets/images/I479_441;75_3.png b/lib/assets/images/I479_441;75_3.png new file mode 100644 index 0000000..d7413d2 Binary files /dev/null and b/lib/assets/images/I479_441;75_3.png differ diff --git a/lib/assets/images/I479_464;75_16.png b/lib/assets/images/I479_464;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I479_464;75_16.png differ diff --git a/lib/assets/images/I479_464;75_18.png b/lib/assets/images/I479_464;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I479_464;75_18.png differ diff --git a/lib/assets/images/I479_464;75_3.png b/lib/assets/images/I479_464;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I479_464;75_3.png differ diff --git a/lib/assets/images/I479_599;75_16.png b/lib/assets/images/I479_599;75_16.png new file mode 100644 index 0000000..18f5f60 Binary files /dev/null and b/lib/assets/images/I479_599;75_16.png differ diff --git a/lib/assets/images/I479_599;75_18.png b/lib/assets/images/I479_599;75_18.png new file mode 100644 index 0000000..3a21d09 Binary files /dev/null and b/lib/assets/images/I479_599;75_18.png differ diff --git a/lib/assets/images/I479_599;75_3.png b/lib/assets/images/I479_599;75_3.png new file mode 100644 index 0000000..d7413d2 Binary files /dev/null and b/lib/assets/images/I479_599;75_3.png differ diff --git a/lib/assets/images/I479_613;75_16.png b/lib/assets/images/I479_613;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_613;75_16.png differ diff --git a/lib/assets/images/I479_613;75_18.png b/lib/assets/images/I479_613;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_613;75_18.png differ diff --git a/lib/assets/images/I479_613;75_3.png b/lib/assets/images/I479_613;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_613;75_3.png differ diff --git a/lib/assets/images/I479_634;75_16.png b/lib/assets/images/I479_634;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_634;75_16.png differ diff --git a/lib/assets/images/I479_634;75_18.png b/lib/assets/images/I479_634;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_634;75_18.png differ diff --git a/lib/assets/images/I479_634;75_3.png b/lib/assets/images/I479_634;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_634;75_3.png differ diff --git a/lib/assets/images/I479_827;75_16.png b/lib/assets/images/I479_827;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I479_827;75_16.png differ diff --git a/lib/assets/images/I479_827;75_18.png b/lib/assets/images/I479_827;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_827;75_18.png differ diff --git a/lib/assets/images/I479_827;75_3.png b/lib/assets/images/I479_827;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_827;75_3.png differ diff --git a/lib/assets/images/I479_855;75_16.png b/lib/assets/images/I479_855;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I479_855;75_16.png differ diff --git a/lib/assets/images/I479_855;75_18.png b/lib/assets/images/I479_855;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_855;75_18.png differ diff --git a/lib/assets/images/I479_855;75_3.png b/lib/assets/images/I479_855;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_855;75_3.png differ diff --git a/lib/assets/images/I479_871;75_16.png b/lib/assets/images/I479_871;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I479_871;75_16.png differ diff --git a/lib/assets/images/I479_871;75_18.png b/lib/assets/images/I479_871;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_871;75_18.png differ diff --git a/lib/assets/images/I479_871;75_3.png b/lib/assets/images/I479_871;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_871;75_3.png differ diff --git a/lib/assets/images/I479_891;75_16.png b/lib/assets/images/I479_891;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I479_891;75_16.png differ diff --git a/lib/assets/images/I479_891;75_18.png b/lib/assets/images/I479_891;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I479_891;75_18.png differ diff --git a/lib/assets/images/I479_891;75_3.png b/lib/assets/images/I479_891;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I479_891;75_3.png differ diff --git a/lib/assets/images/I479_966;75_16.png b/lib/assets/images/I479_966;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I479_966;75_16.png differ diff --git a/lib/assets/images/I479_966;75_18.png b/lib/assets/images/I479_966;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I479_966;75_18.png differ diff --git a/lib/assets/images/I479_966;75_3.png b/lib/assets/images/I479_966;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I479_966;75_3.png differ diff --git a/lib/assets/images/I479_968;441_111.png b/lib/assets/images/I479_968;441_111.png new file mode 100644 index 0000000..9b0d5a3 Binary files /dev/null and b/lib/assets/images/I479_968;441_111.png differ diff --git a/lib/assets/images/I479_968;441_116.png b/lib/assets/images/I479_968;441_116.png new file mode 100644 index 0000000..c6df308 Binary files /dev/null and b/lib/assets/images/I479_968;441_116.png differ diff --git a/lib/assets/images/I479_968;443_117.png b/lib/assets/images/I479_968;443_117.png new file mode 100644 index 0000000..7933637 Binary files /dev/null and b/lib/assets/images/I479_968;443_117.png differ diff --git a/lib/assets/images/I481_1261;75_16.png b/lib/assets/images/I481_1261;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I481_1261;75_16.png differ diff --git a/lib/assets/images/I481_1261;75_18.png b/lib/assets/images/I481_1261;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I481_1261;75_18.png differ diff --git a/lib/assets/images/I481_1261;75_3.png b/lib/assets/images/I481_1261;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I481_1261;75_3.png differ diff --git a/lib/assets/images/I492_2280;492_2255.png b/lib/assets/images/I492_2280;492_2255.png new file mode 100644 index 0000000..d14861f Binary files /dev/null and b/lib/assets/images/I492_2280;492_2255.png differ diff --git a/lib/assets/images/I492_2280;492_2261.png b/lib/assets/images/I492_2280;492_2261.png new file mode 100644 index 0000000..eace643 Binary files /dev/null and b/lib/assets/images/I492_2280;492_2261.png differ diff --git a/lib/assets/images/I492_2280;492_2271.png b/lib/assets/images/I492_2280;492_2271.png new file mode 100644 index 0000000..b9da345 Binary files /dev/null and b/lib/assets/images/I492_2280;492_2271.png differ diff --git a/lib/assets/images/I492_2280;492_2272.png b/lib/assets/images/I492_2280;492_2272.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/I492_2280;492_2272.png differ diff --git a/lib/assets/images/I492_2280;492_2273.png b/lib/assets/images/I492_2280;492_2273.png new file mode 100644 index 0000000..b3078eb Binary files /dev/null and b/lib/assets/images/I492_2280;492_2273.png differ diff --git a/lib/assets/images/I492_2280;492_2274.png b/lib/assets/images/I492_2280;492_2274.png new file mode 100644 index 0000000..fb78b68 Binary files /dev/null and b/lib/assets/images/I492_2280;492_2274.png differ diff --git a/lib/assets/images/I492_2280;492_2276.png b/lib/assets/images/I492_2280;492_2276.png new file mode 100644 index 0000000..5ffb501 Binary files /dev/null and b/lib/assets/images/I492_2280;492_2276.png differ diff --git a/lib/assets/images/I492_2280;492_2278.png b/lib/assets/images/I492_2280;492_2278.png new file mode 100644 index 0000000..f0dc8de Binary files /dev/null and b/lib/assets/images/I492_2280;492_2278.png differ diff --git a/lib/assets/images/I492_2280;492_2279.png b/lib/assets/images/I492_2280;492_2279.png new file mode 100644 index 0000000..2aa7b35 Binary files /dev/null and b/lib/assets/images/I492_2280;492_2279.png differ diff --git a/lib/assets/images/I492_3004;75_16.png b/lib/assets/images/I492_3004;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I492_3004;75_16.png differ diff --git a/lib/assets/images/I492_3004;75_18.png b/lib/assets/images/I492_3004;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I492_3004;75_18.png differ diff --git a/lib/assets/images/I492_3004;75_3.png b/lib/assets/images/I492_3004;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I492_3004;75_3.png differ diff --git a/lib/assets/images/I492_3144;75_16.png b/lib/assets/images/I492_3144;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I492_3144;75_16.png differ diff --git a/lib/assets/images/I492_3144;75_18.png b/lib/assets/images/I492_3144;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I492_3144;75_18.png differ diff --git a/lib/assets/images/I492_3144;75_3.png b/lib/assets/images/I492_3144;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I492_3144;75_3.png differ diff --git a/lib/assets/images/I492_3270;75_16.png b/lib/assets/images/I492_3270;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I492_3270;75_16.png differ diff --git a/lib/assets/images/I492_3270;75_18.png b/lib/assets/images/I492_3270;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I492_3270;75_18.png differ diff --git a/lib/assets/images/I492_3270;75_3.png b/lib/assets/images/I492_3270;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I492_3270;75_3.png differ diff --git a/lib/assets/images/I492_3365;75_16.png b/lib/assets/images/I492_3365;75_16.png new file mode 100644 index 0000000..9022fcc Binary files /dev/null and b/lib/assets/images/I492_3365;75_16.png differ diff --git a/lib/assets/images/I492_3365;75_18.png b/lib/assets/images/I492_3365;75_18.png new file mode 100644 index 0000000..a11ae61 Binary files /dev/null and b/lib/assets/images/I492_3365;75_18.png differ diff --git a/lib/assets/images/I492_3365;75_3.png b/lib/assets/images/I492_3365;75_3.png new file mode 100644 index 0000000..d523631 Binary files /dev/null and b/lib/assets/images/I492_3365;75_3.png differ diff --git a/lib/assets/images/I492_3367;441_111.png b/lib/assets/images/I492_3367;441_111.png new file mode 100644 index 0000000..9b0d5a3 Binary files /dev/null and b/lib/assets/images/I492_3367;441_111.png differ diff --git a/lib/assets/images/I492_3367;441_116.png b/lib/assets/images/I492_3367;441_116.png new file mode 100644 index 0000000..c6df308 Binary files /dev/null and b/lib/assets/images/I492_3367;441_116.png differ diff --git a/lib/assets/images/I492_3367;443_117.png b/lib/assets/images/I492_3367;443_117.png new file mode 100644 index 0000000..7933637 Binary files /dev/null and b/lib/assets/images/I492_3367;443_117.png differ diff --git a/lib/assets/images/I500_417;75_16.png b/lib/assets/images/I500_417;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I500_417;75_16.png differ diff --git a/lib/assets/images/I500_417;75_18.png b/lib/assets/images/I500_417;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I500_417;75_18.png differ diff --git a/lib/assets/images/I500_417;75_3.png b/lib/assets/images/I500_417;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I500_417;75_3.png differ diff --git a/lib/assets/images/I501_520;75_16.png b/lib/assets/images/I501_520;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I501_520;75_16.png differ diff --git a/lib/assets/images/I501_520;75_18.png b/lib/assets/images/I501_520;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I501_520;75_18.png differ diff --git a/lib/assets/images/I501_520;75_3.png b/lib/assets/images/I501_520;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I501_520;75_3.png differ diff --git a/lib/assets/images/I532_438;75_16.png b/lib/assets/images/I532_438;75_16.png new file mode 100644 index 0000000..bd5c13c Binary files /dev/null and b/lib/assets/images/I532_438;75_16.png differ diff --git a/lib/assets/images/I532_438;75_18.png b/lib/assets/images/I532_438;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I532_438;75_18.png differ diff --git a/lib/assets/images/I532_438;75_3.png b/lib/assets/images/I532_438;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I532_438;75_3.png differ diff --git a/lib/assets/images/I532_491;75_16.png b/lib/assets/images/I532_491;75_16.png new file mode 100644 index 0000000..0191f3c Binary files /dev/null and b/lib/assets/images/I532_491;75_16.png differ diff --git a/lib/assets/images/I532_491;75_18.png b/lib/assets/images/I532_491;75_18.png new file mode 100644 index 0000000..5c85b49 Binary files /dev/null and b/lib/assets/images/I532_491;75_18.png differ diff --git a/lib/assets/images/I532_491;75_3.png b/lib/assets/images/I532_491;75_3.png new file mode 100644 index 0000000..59ca5f0 Binary files /dev/null and b/lib/assets/images/I532_491;75_3.png differ diff --git a/lib/assets/nu.json b/lib/assets/nu.json new file mode 100644 index 0000000..4d2ef0a --- /dev/null +++ b/lib/assets/nu.json @@ -0,0 +1 @@ +{"UUID":"Y4BENgeTgUFqvZ2CcFH2fX","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"PADI RIDE","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"debug":false,"pngPath":"/usr/src/app/temp-out/pb-tmp-8b0fa560-35fc-4c4d-b84e-9f269a5378eb/nu/lib/assets/images","pages":[{"UUID":"0:1","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"LO FI","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"108:217","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"108:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":36.0,"y":-321.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"152:59","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":235.0,"width":240.0,"x":94.0,"y":-229.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"152:60","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":85.0,"x":173.0,"y":-122.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"152:61","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":32.0,"x":61.0,"y":-284.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"152:62","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":315.0,"y":242.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"152:64","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Simplicity","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":244.0,"x":60.0,"y":154.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Simplicity"},{"UUID":"152:65","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":141.0,"y":299.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:66","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":191.0,"y":299.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:67","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":361.0,"y":246.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/152_67.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"117:14","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"117:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1232.0,"y":-321.0,"z":6.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"117:48","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.0,"width":145.0,"x":1340.0,"y":-262.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_48.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1525.0,"y":-284.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login"},{"UUID":"117:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon/X","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.313720703125,"width":11.313720703125,"x":1259.686279296875,"y":-276.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Right","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":40.0,"x":1260.0,"y":-286.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Right"},{"UUID":"117:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":1354.0,"y":-75.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"118:9","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":1330.0,"y":118.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"117:50","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":1275.0,"y":-29.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"117:49","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":1311.0,"y":-58.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"117:47","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":88.0,"x":1369.0,"y":-193.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"117:51","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1312.0,"y":47.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_51.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:52","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1369.0,"y":47.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_52.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:53","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1425.0,"y":47.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_53.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"117:54","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":1477.0,"y":47.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/117_54.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":1258.0,"y":171.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"118:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":1391.0,"y":179.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"}]},"isVisible":true},{"UUID":"118:33","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"118:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4028.0,"y":-321.0,"z":18.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"118:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.9990234375,"x":4179.0,"y":-52.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_34.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:38","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":4053.0,"y":250.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"118:39","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":4003.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.6078431606292725,"g":0.6078431606292725,"b":0.6039215922355652},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"118:40","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":4041.0,"y":-249.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_40.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":48.0,"x":4050.0,"y":-238.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_41.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile Name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":103.0,"x":4118.0,"y":-235.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Profile Name"},{"UUID":"118:43","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":177.0,"x":4041.0,"y":-132.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Payment Method"},{"UUID":"118:55","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do more","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.0,"width":65.0,"x":4041.0,"y":168.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":15.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do more"},{"UUID":"118:44","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":4041.0,"y":-92.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"118:56","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Food delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":67.0,"x":4041.0,"y":199.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Food delivery"},{"UUID":"118:45","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Bank Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":4041.0,"y":-61.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Bank Card"},{"UUID":"118:57","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money driving","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":102.0,"x":4041.0,"y":217.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money driving"},{"UUID":"118:58","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":147.0,"x":4041.0,"y":235.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"},{"UUID":"118:59","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate us on store","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":81.0,"x":4041.0,"y":251.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate us on store"},{"UUID":"118:61","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"padiride.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":67.0,"x":4041.0,"y":269.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"padiride.com"},{"UUID":"119:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":235.0,"x":4028.0,"y":157.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null}]},"isVisible":true},{"UUID":"17:41","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Turn on location","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"17:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn on location","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2028.0,"y":-321.0,"z":8.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"17:63","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2028.0,"y":-321.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.6078431606292725,"g":0.6078431606292725,"b":0.6039215922355652},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"22:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":2139.0,"y":-83.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/22_10.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"17:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":2053.0,"y":-171.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.8980392217636108,"g":0.8980392217636108,"b":0.8980392217636108},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"17:64","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":148.0,"width":285.0,"x":2065.0,"y":-144.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"17:71","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":2084.0,"y":59.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"17:72","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":138.0,"x":2139.0,"y":71.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}]},"isVisible":true},{"UUID":"1:2","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"LAUNCH","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"1:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"LAUNCH","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-764.0,"y":-321.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"1:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"LOGO","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":108.0,"x":-638.0,"y":-31.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":36.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"LOGO"}]},"isVisible":true},{"UUID":"1:6","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"1:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-364.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"1:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":235.0,"width":240.0,"x":-305.0,"y":-229.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"1:26","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":85.0,"x":-226.0,"y":-122.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"17:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":32.0,"x":-338.0,"y":-284.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"152:50","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-84.0,"y":242.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"152:51","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":-337.0,"y":134.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"152:52","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":-338.0,"y":151.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"152:53","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-258.0,"y":299.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:54","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-258.0,"y":299.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:55","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.087284088134766,"x":-38.0,"y":246.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/152_55.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"26:17","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"26:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2828.0,"y":-321.0,"z":17.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:44","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":2979.0,"y":-52.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_44.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"26:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":2853.0,"y":273.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"26:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":2803.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.6078431606292725,"g":0.6078431606292725,"b":0.6039215922355652},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":2841.0,"y":-249.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":48.0,"x":2850.0,"y":-238.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_5.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile Name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":103.0,"x":2918.0,"y":-235.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Profile Name"},{"UUID":"28:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":2841.0,"y":-132.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"28:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":2841.0,"y":-92.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"28:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Message","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":73.0,"x":2841.0,"y":-52.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Message"},{"UUID":"28:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":2841.0,"y":-12.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"28:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":2841.0,"y":28.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"28:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":2841.0,"y":68.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"28:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":2918.0,"y":-210.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"28:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":2841.0,"y":-295.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"28:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":206.0,"x":2841.0,"y":199.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"28:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":2857.0,"y":211.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"28:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":2858.0,"y":232.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"28:21","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3013.0,"y":225.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_21.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"26:4","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"26:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2428.0,"y":-321.0,"z":9.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"19:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2428.0,"y":-321.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/19_10.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":2487.0,"y":-17.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"24:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.75140380859375,"width":18.335205078125,"x":2457.5947265625,"y":-271.11346435546875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_22.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":2613.0,"y":-17.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"19:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.460466384887695,"width":48.259521484375,"x":2640.308349609375,"y":0.617706298828125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/19_42.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":2525.0,"y":-65.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/19_5.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"19:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":2502.0,"y":24.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"19:49","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":2619.0,"y":24.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"19:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.460466384887695,"width":48.259521484375,"x":2501.666748046875,"y":0.617706298828125,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/19_33.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"22:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.80775260925293,"width":46.299560546875,"x":2510.0,"y":-1.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/22_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"22:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.80775260925293,"width":46.299560546875,"x":2638.0,"y":-1.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/22_4.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"24:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":307.0,"x":2453.0,"y":116.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"24:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":2465.0,"y":131.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"24:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":2499.0,"y":126.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"24:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":2453.0,"y":86.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"24:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":2454.0,"y":-61.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_32.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"24:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bytesize:clock","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":21.0,"x":2488.0,"y":-60.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"24:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2489.3125,"y":-58.6875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/24_34.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"26:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":307.0,"x":2453.0,"y":201.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"26:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":2555.0,"y":213.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"48:107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 44","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":59.0,"width":27.0,"x":2733.0,"y":-94.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"48:108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":27.0,"x":2733.0,"y":-65.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":2738.0,"y":-87.0,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_110.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":14.0,"x":2739.0,"y":-50.0,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_112.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"28:103","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Support","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:103","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5628.0,"y":-321.0,"z":15.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"41:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5647.0,"y":-282.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/41_2.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"41:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":197.0,"x":5710.0,"y":-300.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi Support"},{"UUID":"41:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":5612.0,"y":-208.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:30","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 26","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":5614.0,"y":-157.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:31","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 27","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":5614.0,"y":-100.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:39","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 31","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":5614.0,"y":8.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:43","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 33","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":5608.0,"y":116.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:36","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 30","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":5608.0,"y":-49.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:40","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":5614.0,"y":59.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"42:44","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 34","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":5615.0,"y":167.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"41:28","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Reach us: +2348136192991","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":189.0,"x":5651.0,"y":-198.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Reach us: +2348136192991"},{"UUID":"41:29","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social Media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":186.0,"x":5651.0,"y":-148.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social Media"},{"UUID":"42:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":5651.0,"y":-90.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"42:41","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":5651.0,"y":13.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"42:45","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":100.0,"x":5651.0,"y":123.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"42:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":5651.0,"y":-43.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"42:42","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":5651.0,"y":70.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"42:46","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":229.0,"x":5651.0,"y":172.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"}]},"isVisible":true},{"UUID":"28:114","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"About Us","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:114","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About Us","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6028.0,"y":-321.0,"z":16.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"47:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":6039.0,"y":-279.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/47_4.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"47:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":93.0,"x":6158.0,"y":-297.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"47:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 35","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":6015.0,"y":-211.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 36","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":6017.0,"y":-164.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:8","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 37","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":6017.0,"y":-103.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:9","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 38","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":6017.0,"y":5.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 39","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":6011.0,"y":113.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 40","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":6011.0,"y":-56.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 41","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":6017.0,"y":52.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 42","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":6018.0,"y":160.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:23","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 43","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":6018.0,"y":207.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"47:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate Us Now","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":96.0,"x":6054.0,"y":-197.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate Us Now"},{"UUID":"47:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Version 0.86","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":92.0,"x":6162.0,"y":-251.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Version 0.86"},{"UUID":"47:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":186.0,"x":6054.0,"y":-149.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social media"},{"UUID":"47:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":6054.0,"y":-88.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"47:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":6054.0,"y":20.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"47:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":100.0,"x":6054.0,"y":125.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"47:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":6054.0,"y":-42.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"47:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":6054.0,"y":63.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"47:21","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":229.0,"x":6054.0,"y":172.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"},{"UUID":"47:24","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Legal","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":42.0,"x":6054.0,"y":219.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Legal"}]},"isVisible":true},{"UUID":"28:177","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"request ride","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"request ride","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3628.0,"y":-321.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":3741.0,"y":-129.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_181.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":396.0,"width":360.0,"x":3628.0,"y":-42.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3657.0,"y":-287.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":269.0,"x":3653.0,"y":17.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":3677.0,"y":28.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"28:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":3808.0,"y":14.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"28:164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":3849.0,"y":26.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"118:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":310.0,"x":3653.0,"y":95.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"118:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":310.0,"x":3653.0,"y":95.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"118:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":139.0,"x":3700.0,"y":105.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Payment Method"},{"UUID":"118:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":3904.0,"y":109.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"118:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.721435546875,"x":3669.10400390625,"y":113.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/118_20.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"28:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":306.0,"x":3657.0,"y":204.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"28:159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Request Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":3749.0,"y":216.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Request Ride "}]},"isVisible":true},{"UUID":"28:219","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4428.0,"y":-321.0,"z":14.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":4447.0,"y":-282.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":4535.0,"y":-300.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"28:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":276.0,"x":4470.0,"y":-239.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"28:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":276.0,"x":4470.0,"y":-239.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":247.0,"x":4499.0,"y":-232.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":44.05072021484375,"width":242.94482421875,"x":4483.796875,"y":-171.8842315673828,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":276.0,"x":4470.0,"y":-204.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_237.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"33:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":276.0,"x":4470.0,"y":1.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":276.0,"x":4470.0,"y":66.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":86.0,"x":4470.0,"y":131.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":91.0,"x":4655.0,"y":131.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"33:6","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":266.0,"x":4475.0,"y":178.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"33:7","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":4569.0,"y":190.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"33:8","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":4719.0,"y":35.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/33_8.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"33:11","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":4470.0,"y":-47.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"33:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":4468.0,"y":11.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"33:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":4468.0,"y":76.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"33:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":4655.0,"y":76.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"}]},"isVisible":true},{"UUID":"28:48","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiation Feature","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:48","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3228.0,"y":-321.0,"z":11.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:142","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":118.63886260986328,"width":151.999267578125,"x":3332.0,"y":-109.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_142.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":310.0,"x":3253.0,"y":-323.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"28:132","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":230.0,"width":310.0,"x":3253.0,"y":-19.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"28:133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Step 1: Select your mode of transportation Step 2: Negotiate with the driver for lower price Step 3: Request a your cab to start trip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":148.0,"width":285.0,"x":3264.0,"y":44.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Step 1: Select your mode of transportation\n\nStep 2: Negotiate with the driver for lower price\n\nStep 3: Request a your cab to start trip"},{"UUID":"28:136","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Using the Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":284.0,"x":3264.0,"y":0.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Using the Negotiation Feature"},{"UUID":"28:135","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":3361.0,"y":216.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"28:138","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn more","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":3253.0,"y":266.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn more"},{"UUID":"28:140","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":166.0,"x":3397.0,"y":261.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"28:139","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3533.0,"y":275.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_139.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:141","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":121.0,"x":3404.0,"y":266.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate Ride"},{"UUID":"28:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":3246.0,"y":-287.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"47:28","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":88.0,"x":3364.0,"y":-220.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"}]},"isVisible":true},{"UUID":"28:70","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"History","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:70","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"History","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5228.0,"y":-321.0,"z":12.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5257.0,"y":-282.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_189.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":181.0,"x":5328.0,"y":-300.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"28:194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":344.0,"x":5236.0,"y":-213.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"28:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":344.0,"x":5236.0,"y":-137.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"28:196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Jabi Lake","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":5259.0,"y":-211.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Jabi Lake "},{"UUID":"28:200","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"MAITAMA","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":5259.0,"y":-133.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"MAITAMA "},{"UUID":"28:198","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 7:41 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":105.0,"x":5259.0,"y":-193.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 7:41 AM "},{"UUID":"28:201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 8:58 PM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":5259.0,"y":-115.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 8:58 PM "},{"UUID":"28:199","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"DELIVERY COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":123.0,"x":5259.0,"y":-177.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"DELIVERY COMPLETED "},{"UUID":"28:202","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":97.0,"x":5259.0,"y":-99.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED "},{"UUID":"28:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5542.0,"y":-185.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_217.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":5542.0,"y":-111.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_218.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"28:81","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Visit Profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"28:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit Profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4828.0,"y":-321.0,"z":13.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"28:205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 20","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":506.0,"width":366.0,"x":4822.0,"y":-157.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"28:206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":97.0,"width":97.0,"x":4956.0,"y":-205.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/28_206.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":71.0,"x":4969.0,"y":-189.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_207.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"28:216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.0,"width":18.0,"x":4847.0,"y":-282.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/28_216.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":-34.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_13.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":27.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_14.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":149.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_15.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":4853.0,"y":88.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/119_16.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"119:17","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":4867.0,"y":-24.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"johndoe@gmail.com"},{"UUID":"119:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+2348123567890","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":4867.0,"y":37.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+2348123567890"},{"UUID":"119:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":4867.0,"y":160.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"FCT"},{"UUID":"119:20","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Johndeo334@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":204.0,"x":4867.0,"y":99.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Johndeo334@gmail.com"},{"UUID":"119:21","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile Name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":103.0,"x":4956.0,"y":-99.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Profile Name"},{"UUID":"119:22","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":4975.0,"y":-74.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "}]},"isVisible":true},{"UUID":"2:27","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"2:27","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":836.0,"y":-321.0,"z":5.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"10:74","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1129.0,"y":-284.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login"},{"UUID":"10:76","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon/X","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.313720703125,"width":11.313720703125,"x":863.686279296875,"y":-276.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/10_76.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"10:79","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Right","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":40.0,"x":864.0,"y":-286.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Right"},{"UUID":"10:75","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":886.0,"y":-21.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"10:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":862.0,"y":39.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"10:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":862.0,"y":39.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/10_81.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"10:82","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":898.0,"y":50.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"116:10","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7034675467","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":947.0,"y":50.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7034675467"},{"UUID":"10:83","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1111.0,"y":53.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"116:9","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":878.0,"y":57.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/116_9.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"11:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":914.0,"y":198.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"10:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":862.0,"y":120.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"10:89","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":992.0,"y":128.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"11:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1057.0,"y":198.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/11_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1017.0,"y":198.0,"z":9.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"11:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1017.0,"y":198.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"11:228","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":1017.0,"y":201.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_228.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"11:244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1096.0,"y":198.0,"z":10.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"11:243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1096.0,"y":198.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/11_243.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:237","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":1097.0,"y":201.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_237.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"11:245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":308.0,"x":862.0,"y":-329.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"11:246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":88.0,"x":972.0,"y":-214.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"}]},"isVisible":true},{"UUID":"2:36","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Signup","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"2:36","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Signup","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1628.0,"y":-321.0,"z":7.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"11:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Set up profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":201.0,"x":1707.0,"y":-286.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Set up profile"},{"UUID":"11:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":309.0,"x":1654.0,"y":-226.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"11:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":309.0,"x":1654.0,"y":-226.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":1668.0,"y":-216.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"11:251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1904.0,"y":-212.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"11:252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":-165.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_252.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"12:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":-104.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/12_2.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"13:2","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":18.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/13_2.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"13:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1654.0,"y":-43.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/13_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":85.0,"x":1668.0,"y":-155.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your Email"},{"UUID":"12:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Phone Number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":161.0,"x":1668.0,"y":-94.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your Phone Number"},{"UUID":"13:4","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":1668.0,"y":29.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"State"},{"UUID":"13:5","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":1668.0,"y":-32.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Address"},{"UUID":"11:255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":1694.0,"y":189.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"11:256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":309.0,"x":1653.0,"y":122.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"11:257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":1777.0,"y":130.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"11:260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1857.0,"y":190.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1817.0,"y":190.0,"z":14.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"11:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1817.0,"y":190.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"11:265","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":1817.0,"y":193.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_265.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"11:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1897.0,"y":190.0,"z":15.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"11:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1897.0,"y":190.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/11_272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"11:274","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":1898.0,"y":193.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/11_274.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"14:12","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":1654.0,"y":79.5,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"14:13","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":1654.0,"y":79.5,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9647058844566345,"g":0.9647058844566345,"b":0.9647058844566345},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.9083333611488342,"g":0.9083333611488342,"b":0.9083333611488342},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"14:14","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":1658.0,"y":83.5,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/14_14.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"14:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and comditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":249.0,"x":1678.0,"y":79.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and comditions"}]},"isVisible":true},{"UUID":"48:34","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Search Destination","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"48:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search Destination","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2428.0,"y":375.0,"z":10.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"48:90","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":283.0,"x":2464.0,"y":897.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"48:91","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Done","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":2582.0,"y":909.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Done"},{"UUID":"48:92","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":365.0,"x":2428.0,"y":484.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:95","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":0.0,"x":2473.5,"y":417.992431640625,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:96","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":270.0,"x":2493.0,"y":431.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"48:83","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Area 11, Garki area........","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":177.0,"x":2503.0,"y":401.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Area 11, Garki area........"},{"UUID":"48:104","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":52.0,"x":2503.0,"y":505.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home."},{"UUID":"48:97","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":155.0,"x":2503.0,"y":439.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"48:105","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"University of Abuja, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":206.0,"x":2503.0,"y":539.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"University of Abuja, Abuja"},{"UUID":"48:106","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"46 Kbuwa, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":2503.0,"y":577.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"46 Kbuwa, Abuja"},{"UUID":"48:93","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2465.0,"y":407.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_93.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:94","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2465.0,"y":444.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_94.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:85","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":2463.0,"y":507.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_85.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:87","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2464.0,"y":542.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_87.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"48:101","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2464.0,"y":577.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/48_101.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"95:25","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"95:25","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":436.0,"y":-321.0,"z":4.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"152:68","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":235.0,"width":240.0,"x":494.0,"y":-227.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"152:69","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"illustration","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":85.0,"x":573.0,"y":-120.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":18.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"illustration"},{"UUID":"152:70","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":32.0,"x":461.0,"y":-282.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"152:71","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Get Started","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":74.0,"x":679.0,"y":244.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Get Started"},{"UUID":"152:73","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Class","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":197.0,"x":462.0,"y":156.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Class"},{"UUID":"152:74","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":541.0,"y":301.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:75","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":643.0,"y":301.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"152:76","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":761.0,"y":248.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/152_76.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true}],"type":"page"},{"UUID":"477:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"PROTOTYPE","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"479:1013","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:1013","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2218.0,"y":-320.0,"z":26.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:1014","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":1722.0,"y":-390.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_1014.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1015","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2513.0,"y":-12.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:1016","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2513.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1016.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1017","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":2527.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1017.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:1019","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2243.0,"y":-9.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1019.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1020","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2243.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1020.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:1021","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":2301.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1021.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1022","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":2253.0,"y":1.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1022.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1023","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":2312.0,"y":2.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1023.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1026","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":2286.0,"y":78.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:1027","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":2256.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1027.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1029","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":2412.0,"y":78.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:1030","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":2301.0,"y":119.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"479:1031","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":2418.0,"y":119.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:1032","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":2309.0,"y":94.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1032.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1038","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":2317.23046875,"y":-176.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1038.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1039","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":2437.0,"y":94.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1039.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1045","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":2242.0,"y":227.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:1046","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":2349.0,"y":236.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:1047","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.084228515625,"x":2426.0,"y":0.000011086463928222656,"z":17.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:1048","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.084228515625,"x":2426.0,"y":0.000011086463928222656,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1048.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1049","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625297546386719,"width":12.625244140625,"x":2440.729248046875,"y":14.72950553894043,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1049.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:1051","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2443.0,"y":-303.0,"z":18.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2520.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2486.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1051;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1051;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2462.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1051;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1051;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1051;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2443.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1051;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1051;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:1052","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":2245.0,"y":-270.0,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1052.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1053","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":571.0,"width":336.0,"x":2231.0,"y":-104.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:1054","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":125.0,"width":125.0,"x":2334.0,"y":-171.0,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1054.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1055","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":171.0,"x":2311.0,"y":-40.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":36.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"479:1056","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":2243.0,"y":58.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"johndoe@gmail.com"},{"UUID":"479:1057","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+2348123567890","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":2243.0,"y":119.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+2348123567890"},{"UUID":"479:1058","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":2243.0,"y":241.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"FCT"},{"UUID":"479:1059","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Johndeo334@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":204.0,"x":2243.0,"y":180.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Johndeo334@gmail.com"},{"UUID":"479:1060","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":72.0,"x":2368.0,"y":8.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"479:1061","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":89.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:1062","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":150.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:1063","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":212.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:1064","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":2243.0,"y":273.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}]},"isVisible":true},{"UUID":"479:1065","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logo padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:1065","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"logo padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"481:1259","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4179.0,"y":-320.0,"z":27.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:1066","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4571.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1066.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1067","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"WhatsApp_Image_2021-07-23_at_8.10 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":91.0,"width":200.0,"x":-4099.0,"y":-62.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_1067.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen padi 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen padi 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:264","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-3380.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3503.000244140625,"y":-520.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-3155.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-3078.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-3112.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_119;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_119;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-3135.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_119;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_119;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:119;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-3155.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_119;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_119;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-3100.0,"y":209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"479:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Class","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":192.0,"x":-3355.0,"y":117.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Class"},{"UUID":"479:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-3274.0,"y":266.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-3224.0,"y":266.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-3054.0,"y":213.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_124.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:125","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Destination_re_sr74 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":284.0,"width":399.0,"x":-3356.0,"y":-224.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_125.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":-3355.0,"y":-274.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"479:168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our Rides are safe and fast","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":176.0,"x":-3354.0,"y":151.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our Rides are safe and fast"}]},"isVisible":true},{"UUID":"479:169","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen padi 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:169","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen padi 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:117","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-3779.0,"y":-320.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:170","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3885.0,"y":-521.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:171","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-3554.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-3477.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-3511.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_171;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_171;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-3534.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_171;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_171;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:171;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-3554.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_171;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_171;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":-3752.0,"y":101.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"479:173","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our rides are negotiable and convenient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":263.0,"x":-3754.0,"y":151.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our rides are negotiable and convenient"},{"UUID":"479:174","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":-3753.0,"y":118.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"479:175","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-3673.0,"y":266.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-3673.0,"y":266.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 147","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":56.08740234375,"x":-3491.0,"y":210.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-3491.0,"y":210.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"479:179","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-3445.0,"y":214.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_179.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":-3753.0,"y":-273.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"479:181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":268.20269775390625,"width":406.095703125,"x":-3777.095703125,"y":-234.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_181.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.2197265625,"width":0.056884765625,"x":-3754.967529296875,"y":-39.81378173828125,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_182.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:183","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2197723388671875,"width":3.597900390625,"x":-3691.346923828125,"y":-16.997833251953125,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_183.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.181320190429688,"width":8.8701171875,"x":-3561.126220703125,"y":-211.738037109375,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_184.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":223.26889038085938,"width":75.3984375,"x":-3612.343017578125,"y":-191.30508422851562,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":225.50778198242188,"width":30.410888671875,"x":-3536.944580078125,"y":-191.30508422851562,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_186.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.720458984375,"y":-169.12445068359375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3580.34619140625,"y":-169.12445068359375,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_188.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.97216796875,"y":-169.12445068359375,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_189.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3598.403564453125,"y":-143.14060974121094,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_190.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:191","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3580.029541015625,"y":-143.14060974121094,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_191.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:192","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3561.655517578125,"y":-143.14060974121094,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_192.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:193","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.086669921875,"y":-117.15676879882812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_193.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.712646484375,"y":-117.15676879882812,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_194.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.338623046875,"y":-117.15676879882812,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_195.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.77001953125,"y":-91.17292785644531,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_196.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:197","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.39599609375,"y":-91.17292785644531,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_197.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:198","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.021728515625,"y":-91.17292785644531,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_198.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:199","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.453125,"y":-65.1890869140625,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_199.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:200","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.0791015625,"y":-65.1890869140625,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_200.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.705078125,"y":-65.1890869140625,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_201.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:202","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3597.13623046875,"y":-39.20526123046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_202.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:203","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3578.76220703125,"y":-39.20526123046875,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_203.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:204","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3560.38818359375,"y":-39.20526123046875,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_204.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3596.819580078125,"y":-13.221405029296875,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_205.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3578.445556640625,"y":-13.221405029296875,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_206.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3560.071533203125,"y":-13.221405029296875,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_207.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9208526611328125,"width":11.403076171875,"x":-3596.501220703125,"y":12.76177978515625,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_208.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:209","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.409912109375,"width":11.406982421875,"x":-3578.1298828125,"y":12.76171875,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_209.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:210","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3559.754638671875,"y":12.762451171875,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:211","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.146377563476562,"width":8.8701171875,"x":-3457.746826171875,"y":-98.7779541015625,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_211.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":120.96284484863281,"width":75.398681640625,"x":-3517.304443359375,"y":-86.76014709472656,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_212.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":110.17411804199219,"width":30.41064453125,"x":-3441.90576171875,"y":-86.76014709472656,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_213.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:214","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3502.414794921875,"y":-65.1890869140625,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_214.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:215","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3484.040771484375,"y":-65.1890869140625,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_215.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.666748046875,"y":-65.1890869140625,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_216.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3502.09814453125,"y":-39.20526123046875,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_217.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3483.72412109375,"y":-39.20526123046875,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_218.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":-3465.349853515625,"y":-39.20526123046875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_219.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3501.78125,"y":-13.221405029296875,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_220.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3483.4072265625,"y":-13.221405029296875,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_221.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3465.033203125,"y":-13.221405029296875,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3501.464599609375,"y":12.762451171875,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_223.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3483.09033203125,"y":12.762451171875,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_224.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":-3464.71630859375,"y":12.762451171875,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.060516357421875,"width":45.384765625,"x":-3508.379638671875,"y":37.41522216796875,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_226.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":73.21176147460938,"width":167.767578125,"x":-3747.372314453125,"y":-25.431365966796875,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_227.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":52.68495178222656,"width":35.381591796875,"x":-3746.602783203125,"y":-12.77655029296875,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_228.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.35690307617188,"width":50.770751953125,"x":-3628.74365234375,"y":-2.356903076171875,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_229.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":79.50950622558594,"width":295.288330078125,"x":-3747.69775390625,"y":-31.07318115234375,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_230.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.98503112792969,"width":206.461669921875,"x":-3730.58154296875,"y":-76.46965026855469,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_231.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.48428344726562,"width":293.618896484375,"x":-3744.879150390625,"y":-45.9349365234375,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.6736907958984375,"width":12.59228515625,"x":-3703.9609375,"y":-31.204376220703125,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.545944213867188,"width":11.54296875,"x":-3563.20849609375,"y":17.9970703125,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.851654052734375,"width":30.029052734375,"x":-3581.661865234375,"y":-31.4085693359375,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_235.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.840133666992188,"width":24.343017578125,"x":-3479.78759765625,"y":-34.72076416015625,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_236.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.721405029296875,"width":28.926513671875,"x":-3722.55224609375,"y":-69.66177368164062,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_237.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.922271728515625,"width":44.819580078125,"x":-3690.07958984375,"y":-74.82081604003906,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_238.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.514373779296875,"width":99.5126953125,"x":-3635.99560546875,"y":-74.50166320800781,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.985595703125,"width":151.693359375,"x":-3712.80322265625,"y":-83.94476318359375,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_240.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.73707580566406,"width":17.839111328125,"x":-3743.9609375,"y":-4.045166015625,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_241.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":46.97100830078125,"width":28.332763671875,"x":-3624.59619140625,"y":8.2879638671875,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_242.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.188919067382812,"width":11.805419921875,"x":-3660.011962890625,"y":-43.23382568359375,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_243.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.645248413085938,"width":20.46240234375,"x":-3674.572021484375,"y":-50.622589111328125,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_244.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.010284423828125,"width":85.916259765625,"x":-3539.8603515625,"y":-12.967041015625,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_245.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.061462879180908,"width":68.810546875,"x":-3530.766357421875,"y":-9.688496589660645,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_246.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1764373779296875,"width":74.845458984375,"x":-3534.289794921875,"y":-7.194204807281494,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_247.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0953521728515625,"width":80.26806640625,"x":-3537.08740234375,"y":-3.806408405303955,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_248.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 142","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.61727905273438,"width":93.194580078125,"x":-3779.0,"y":-102.16268920898438,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_249.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:264","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen padi 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen padi 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2980.0,"y":-320.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3089.000244140625,"y":-519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2755.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2678.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2712.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_266;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_266;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2735.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_266;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_266;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:266;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2755.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_266;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_266;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Get Started","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":74.0,"x":-2736.0,"y":209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Get Started"},{"UUID":"479:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-2874.0,"y":266.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-2773.0,"y":266.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-2654.0,"y":213.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:271","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Order_ride_re_372k 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":311.0,"width":663.0,"x":-3010.0,"y":-253.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"We provide delivery service","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":313.0,"x":-2957.0,"y":117.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"We provide delivery service"},{"UUID":"479:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our ride ease stress and saves time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":232.0,"x":-2954.0,"y":151.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our ride ease stress and saves time"}]},"isVisible":true},{"UUID":"479:306","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2580.0,"y":378.0,"z":4.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":606.0,"width":360.0,"x":-2580.0,"y":84.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3803921639919281,"g":0.7058823704719543,"b":0.3607843220233917},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":180.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":180.0,"type":"rectangle","child":null},{"UUID":"479:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2355.0,"y":395.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2278.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2312.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_308;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_308;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2335.125,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_308;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_308;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:308;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2355.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_308;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_308;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:309","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Access_account_re_8spm 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":210.0,"width":206.0,"x":-2493.0,"y":469.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_309.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:339","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":-2529.0,"y":733.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"479:340","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":793.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_340.png","prototypeNodeUUID":"492:1614","type":"image"},{"UUID":"479:346","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":-2501.0,"y":952.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"479:347","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2553.0,"y":874.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:348","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":-2423.0,"y":882.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"479:349","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2358.0,"y":952.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_349.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:352","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":952.0,"z":9.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:353","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":952.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:354","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-2398.0,"y":955.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_354.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":952.0,"z":10.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":952.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_361.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:363","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":-2318.0,"y":955.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_363.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"479:365","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:1870","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2180.0,"y":-320.0,"z":5.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1955.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1878.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1912.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_366;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_366;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1935.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_366;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_366;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:366;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1955.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_366;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_366;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":-2058.0,"y":-201.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"479:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":-2082.0,"y":-20.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"479:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":-2137.0,"y":-155.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"479:370","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":-2101.0,"y":-184.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"479:371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2100.0,"y":-79.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_371.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2043.0,"y":-79.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_372.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1987.0,"y":-79.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_373.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1935.0,"y":-79.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_374.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2154.0,"y":14.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":-2021.0,"y":22.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"479:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":83.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"159:300","parameters":null,"overrideValues":[{"UUID":"159:369","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":-1860.0,"y":288.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_369.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_369.png","type":"image"},{"UUID":"159:368","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":-1860.0,"y":288.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_368.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_368.png","type":"image"},{"UUID":"159:366","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":278.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_366.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_366.png","type":"image"},{"UUID":"159:374","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":-2078.0,"y":289.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_374.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_374.png","type":"image"},{"UUID":"159:373","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2073.0,"y":285.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_373.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_373.png","type":"image"},{"UUID":"159:372","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2078.0,"y":285.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_372.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_372.png","type":"image"},{"UUID":"159:371","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":280.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_371.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_371.png","type":"image"},{"UUID":"159:345","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"?123","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":275.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"valueName":"?123","type":"stringValue"},{"UUID":"159:344","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":",","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":278.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"valueName":",","type":"stringValue"},{"UUID":"159:343","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":".","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":278.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"valueName":".","type":"stringValue"},{"UUID":"159:377","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Polygon 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:377;159:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":237.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_377;159_377.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_377.png","type":"image"},{"UUID":"159:382","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"value":{"UUID":"I479:377;159:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":238.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/I479_377;159_382.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_377;159_382.png","type":"image"},{"UUID":"159:338","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"p","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":141.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"valueName":"p","type":"stringValue"},{"UUID":"159:337","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"0","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":99.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"valueName":"0","type":"stringValue"},{"UUID":"159:336","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"l","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":184.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"valueName":"l","type":"stringValue"},{"UUID":"159:335","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"o","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":141.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"valueName":"o","type":"stringValue"},{"UUID":"159:334","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"9","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":99.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"valueName":"9","type":"stringValue"},{"UUID":"159:333","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"k","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":184.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"valueName":"k","type":"stringValue"},{"UUID":"159:332","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"i","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":141.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"valueName":"i","type":"stringValue"},{"UUID":"159:331","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"8","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":99.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"valueName":"8","type":"stringValue"},{"UUID":"159:330","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"m","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":227.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"valueName":"m","type":"stringValue"},{"UUID":"159:329","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"j","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":184.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"valueName":"j","type":"stringValue"},{"UUID":"159:328","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"u","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":141.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"valueName":"u","type":"stringValue"},{"UUID":"159:327","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"7","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":99.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"valueName":"7","type":"stringValue"},{"UUID":"159:326","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"n","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":227.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"valueName":"n","type":"stringValue"},{"UUID":"159:325","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"h","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":184.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"valueName":"h","type":"stringValue"},{"UUID":"159:324","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"y","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":141.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"valueName":"y","type":"stringValue"},{"UUID":"159:323","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"6","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":99.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"valueName":"6","type":"stringValue"},{"UUID":"159:322","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"b","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":227.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"valueName":"b","type":"stringValue"},{"UUID":"159:321","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"g","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":184.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"valueName":"g","type":"stringValue"},{"UUID":"159:320","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"t","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":141.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"valueName":"t","type":"stringValue"},{"UUID":"159:319","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":99.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"valueName":"5","type":"stringValue"},{"UUID":"159:318","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"v","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":227.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"valueName":"v","type":"stringValue"},{"UUID":"159:317","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"f","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":184.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"valueName":"f","type":"stringValue"},{"UUID":"159:316","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"r","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":141.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"valueName":"r","type":"stringValue"},{"UUID":"159:315","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":99.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"valueName":"4","type":"stringValue"},{"UUID":"159:314","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"c","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":227.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"valueName":"c","type":"stringValue"},{"UUID":"159:313","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"d","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":184.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"valueName":"d","type":"stringValue"},{"UUID":"159:312","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"e","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":141.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"valueName":"e","type":"stringValue"},{"UUID":"159:311","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":99.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"valueName":"3","type":"stringValue"},{"UUID":"159:310","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"x","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":227.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"valueName":"x","type":"stringValue"},{"UUID":"159:309","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"s","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":184.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"valueName":"s","type":"stringValue"},{"UUID":"159:308","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"w","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":141.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"valueName":"w","type":"stringValue"},{"UUID":"159:307","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":99.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"valueName":"2","type":"stringValue"},{"UUID":"159:306","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"z","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":227.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"valueName":"z","type":"stringValue"},{"UUID":"159:305","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"a","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":184.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"valueName":"a","type":"stringValue"},{"UUID":"159:304","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"q","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":141.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"valueName":"q","type":"stringValue"},{"UUID":"159:303","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I479:377;159:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":99.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"valueName":"1","type":"stringValue"}],"sharedNodeSetID":null,"type":"shared_instance"}]},"isVisible":true},{"UUID":"479:417","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Location pop up padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Location pop up padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1380.0,"y":-320.0,"z":7.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1637.0,"y":-473.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3121.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:419","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":499.9476318359375,"width":324.79815673828125,"x":-1099.144287109375,"y":-8.592529296875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.36944580078125,"x":-973.654052734375,"y":49.62921142578125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_420.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-907.218017578125,"y":293.90740966796875,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_423.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.3695068359375,"x":-1099.144287109375,"y":-8.592529296875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_426.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.36944580078125,"x":-813.715576171875,"y":171.135498046875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_429.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:432","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-928.133056640625,"y":450.85302734375,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_432.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:435","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":429.0,"x":-1409.0,"y":-320.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:436","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 144","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1355.0,"y":-170.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:437","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1355.0,"y":-170.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":281.634033203125,"x":-1343.856201171875,"y":-149.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"479:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":258.3333740234375,"x":-1332.0,"y":67.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:440","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":142.8431396484375,"x":-1274.0,"y":76.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}],"type":"group"},{"UUID":"479:441","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1155.0,"y":-299.0,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1078.0,"y":-299.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1112.0,"y":-298.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_441;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_441;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1135.125,"y":-297.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_441;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_441;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:441;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1155.0,"y":-297.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_441;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_441;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"}]},"isVisible":true},{"UUID":"479:442","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:442","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-980.0,"y":-320.0,"z":8.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:443","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1268.0,"y":-723.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_443.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":-600.1442260742188,"y":-167.97216796875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":-474.654052734375,"y":-111.3785400390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_445.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:448","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":-408.218017578125,"y":126.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_448.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":-600.1442260742188,"y":-167.97216796875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_451.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36945724487305,"width":39.36944580078125,"x":-314.715576171875,"y":6.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_454.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-429.133056640625,"y":278.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_457.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":-560.7747192382812,"y":94.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":-560.7747192382812,"y":94.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_461.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":-543.5506591796875,"y":111.30470275878906,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_462.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"479:464","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-755.0,"y":-303.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-678.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-712.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_464;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_464;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-735.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_464;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_464;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:464;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-755.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_464;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_464;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":-12.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_466.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":-671.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_467.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:469","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_469.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:470","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":-270.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_470.png","prototypeNodeUUID":"492:3248","type":"image"},{"UUID":"479:471","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-897.0,"y":-9.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_471.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:472","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-945.0,"y":1.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_472.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:473","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-886.0,"y":2.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_473.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:477","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-942.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_477.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:479","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":-777.0,"y":110.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"664:415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 160","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-919.0,"y":110.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:476","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-919.0,"y":110.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:480","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-904.0,"y":151.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "}],"type":"group"},{"UUID":"479:481","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":-771.0,"y":151.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:488","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":-752.0,"y":126.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_488.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-955.0,"y":-190.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:612","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:495","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.05999755859375,"x":-945.0,"y":-175.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_495.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:496","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":-919.0,"y":-178.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"479:497","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-849.0,"y":236.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:498","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-955.0,"y":-222.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "}]},"isVisible":true},{"UUID":"479:559","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"payment method","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment method","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1420.0,"y":-320.0,"z":12.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":1259.0,"y":-753.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_560.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1715.0,"y":-12.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1715.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_562.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":1729.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_563.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:565","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1445.0,"y":-9.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_565.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:566","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1445.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_566.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:567","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":1503.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_567.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:568","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":1455.0,"y":1.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_568.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:569","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":1514.0,"y":2.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_569.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:572","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":1488.0,"y":78.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:573","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":1458.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_573.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:575","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":1614.0,"y":78.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:576","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":1503.0,"y":119.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"479:577","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":1620.0,"y":119.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:578","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":1511.0,"y":94.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_578.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:584","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":1519.23046875,"y":-176.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_584.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":1639.0,"y":94.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_585.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.2279052734375,"x":1501.0,"y":-144.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_591.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:594","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":1445.0,"y":-165.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:595","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":1455.0,"y":-150.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_595.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:596","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":1481.0,"y":-153.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"479:597","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":1551.0,"y":236.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:598","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":1445.0,"y":-199.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"479:599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1645.0,"y":-303.0,"z":21.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1722.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1688.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_599;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_599;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1664.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_599;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_599;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:599;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1645.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_599;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_599;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 145","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":1391.0,"y":-320.0,"z":22.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:601","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":1391.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:602","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":1441.0,"y":-248.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_602.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":1522.0,"y":-234.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"}],"type":"group"},{"UUID":"479:604","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":177.0,"x":1446.0,"y":-135.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Payment Method"},{"UUID":"479:605","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":1446.0,"y":-89.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"479:606","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Bank Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":1446.0,"y":-58.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:826","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Bank Card"},{"UUID":"479:607","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":1446.0,"y":200.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:608","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":1463.0,"y":212.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"479:609","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":1464.0,"y":233.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"479:610","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":1619.0,"y":222.0,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_610.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:611","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":1446.0,"y":268.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"479:612","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Search padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:612","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-580.0,"y":-320.0,"z":13.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:613","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-356.0,"y":-296.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-279.0,"y":-296.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-313.0,"y":-295.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_613;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_613;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-336.125,"y":-294.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_613;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_613;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:613;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-356.0,"y":-294.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_613;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_613;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:614","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-555.0,"y":226.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2982","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:615","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Done","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":-424.0,"y":238.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Done"},{"UUID":"479:616","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 50","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":106.0,"width":311.0,"x":-555.0,"y":-234.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:617","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":0.0,"x":-534.5,"y":-189.00758361816406,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:618","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":270.0,"x":-515.0,"y":-176.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:619","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Area 11, Garki area........","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":-505.0,"y":-204.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Area 11, Garki area........"},{"UUID":"479:620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":39.0,"x":-517.0,"y":-108.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home."},{"UUID":"479:621","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":136.0,"x":-505.0,"y":-166.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"479:622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"University of Abuja, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":155.0,"x":-517.0,"y":-85.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"University of Abuja, Abuja"},{"UUID":"479:623","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"46 Kbuwa, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":-517.0,"y":-62.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"46 Kbuwa, Abuja"},{"UUID":"479:624","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-543.0,"y":-200.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_624.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:625","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-543.0,"y":-163.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_625.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:626","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":13.0,"x":-543.0,"y":-107.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_626.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.383148193359375,"width":12.3831787109375,"x":-542.326171875,"y":-83.06521606445312,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_627.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:630","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.38315200805664,"width":12.3831787109375,"x":-542.326171875,"y":-59.478271484375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_630.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:633","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiation feature","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation feature","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":220.0,"y":-320.0,"z":14.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:634","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":445.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":522.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":488.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_634;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_634;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":464.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_634;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_634;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:634;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":445.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_634;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_634;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":326.0,"y":-234.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"479:636","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":246.0,"y":-5.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"479:637","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":246.0,"y":35.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"479:638","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":328.0,"y":-209.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"839:408","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 161","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":258.0,"width":311.0,"x":245.0,"y":-34.0,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:639","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":258.0,"width":311.0,"x":245.0,"y":-34.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:640","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Step 1: Select Delivery as your transportation option Step 2: Search and select a Destination and PickUp location Step 3: Request a delivery Rider/Driver to start trip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":172.0,"width":289.0,"x":257.0,"y":26.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Step 1: Select Delivery as your transportation option\n\nStep 2: Search and select a Destination and PickUp location\n\nStep 3: Request a delivery Rider/Driver to start trip"},{"UUID":"479:641","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Using the Delivery Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.434782028198242,"width":284.9161682128906,"x":256.0354919433594,"y":-12.686956405639648,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":" Using the Delivery Feature"}],"type":"group"},{"UUID":"479:646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"undraw_conversation_h12g 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":181.0,"width":279.0,"x":252.0,"y":-262.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":180.9868621826172,"width":278.99591064453125,"x":252.00498962402344,"y":-261.9845886230469,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_647.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":170.74034118652344,"width":278.82464599609375,"x":252.120361328125,"y":-260.5289001464844,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_648.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:649","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.409164428710938,"width":228.6171112060547,"x":252.0047149658203,"y":-136.35848999023438,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_649.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:650","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.068038940429688,"width":228.6171112060547,"x":252.0047149658203,"y":-133.01736450195312,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_650.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:651","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":133.74151611328125,"width":91.8858642578125,"x":368.9051513671875,"y":-220.7479248046875,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_651.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.8555908203125,"x":379.4194030761719,"y":-118.96939086914062,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_652.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.8555908203125,"x":379.4194030761719,"y":-118.96939086914062,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_653.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560516357421875,"x":409.4254150390625,"y":-94.70497131347656,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_654.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560516357421875,"x":409.4254150390625,"y":-94.70497131347656,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_655.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.170135498046875,"x":412.7316589355469,"y":-95.4290771484375,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_656.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:657","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.170135498046875,"x":412.7316589355469,"y":-95.4290771484375,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_657.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.5897216796875,"width":34.017181396484375,"x":419.4761962890625,"y":-92.4639892578125,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_658.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:659","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2659454345703125,"width":6.48052978515625,"x":421.76861572265625,"y":-91.22409057617188,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_659.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:660","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49969482421875,"x":421.51629638671875,"y":-91.24188232421875,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_660.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:661","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49969482421875,"x":421.51629638671875,"y":-91.24188232421875,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_661.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06097412109375,"width":33.96185302734375,"x":419.5318603515625,"y":-92.4639892578125,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_662.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:663","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.19842529296875,"width":37.073333740234375,"x":418.50347900390625,"y":-95.13943481445312,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_663.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:664","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.509490966796875,"width":40.68988037109375,"x":417.37890625,"y":-99.28091430664062,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_664.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:665","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.14971923828125,"width":82.16317749023438,"x":377.29443359375,"y":-116.43988037109375,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_665.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.8724365234375,"width":33.6077880859375,"x":369.33160400390625,"y":-142.47586059570312,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_666.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.557296752929688,"width":22.937591552734375,"x":392.996826171875,"y":-157.87127685546875,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_667.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:668","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.559844970703125,"width":22.937591552734375,"x":392.996826171875,"y":-157.77981567382812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_668.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:669","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.38824462890625,"width":14.48297119140625,"x":393.50140380859375,"y":-141.68951416015625,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_669.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:670","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.370391845703125,"width":10.08172607421875,"x":392.85760498046875,"y":-140.02227783203125,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_670.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:671","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.38824462890625,"width":14.481842041015625,"x":392.996826171875,"y":-141.68951416015625,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_671.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:672","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.390426635742188,"width":14.481842041015625,"x":392.996826171875,"y":-141.5113067626953,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_672.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:673","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.910018920898438,"width":19.3140869140625,"x":403.95880126953125,"y":-200.8544464111328,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_673.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.314910888671875,"width":10.6134033203125,"x":403.953857421875,"y":-200.8544464111328,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_674.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:675","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.509552001953125,"width":24.124755859375,"x":390.92333984375,"y":-215.29299926757812,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_675.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.017349243164062,"width":46.52880859375,"x":412.9287109375,"y":-116.447509765625,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_676.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":98.12994384765625,"width":56.22943115234375,"x":404.12921142578125,"y":-195.21307373046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_677.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:678","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.6978759765625,"width":29.449737548828125,"x":391.7159729003906,"y":-129.2290802001953,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_678.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:679","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.9834747314453125,"width":6.525238037109375,"x":436.93780517578125,"y":-171.79318237304688,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_679.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:680","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.237457275390625,"width":25.26513671875,"x":427.865478515625,"y":-129.85411071777344,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_680.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:681","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.13446044921875,"width":23.6849365234375,"x":391.3631286621094,"y":-215.2978057861328,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_681.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:682","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.74609375,"width":35.163909912109375,"x":384.1615905761719,"y":-219.7036590576172,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_682.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.92510986328125,"width":13.24212646484375,"x":407.9235534667969,"y":-129.2290802001953,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_683.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:684","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6055908203125,"width":29.44512939453125,"x":406.78350830078125,"y":-192.8612823486328,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_684.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.36421966552734,"width":25.838470458984375,"x":409.3843994140625,"y":-193.4024658203125,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_685.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6106948852539,"width":29.43609619140625,"x":406.28216552734375,"y":-193.4024658203125,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_686.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:687","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.9705810546875,"x":406.53033447265625,"y":-132.5371551513672,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_687.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:688","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.97113037109375,"x":406.2774353027344,"y":-132.27035522460938,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_688.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:689","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.058914184570312,"width":35.1466064453125,"x":384.18316650390625,"y":-208.0164794921875,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_689.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:692","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.3701324462890625,"width":4.471710205078125,"x":367.3538513183594,"y":-95.16229248046875,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_692.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:693","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":111.50717163085938,"width":54.518341064453125,"x":318.8424987792969,"y":-215.30555725097656,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_693.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.53302001953125,"x":336.14801025390625,"y":-118.88555908203125,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_694.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.53302001953125,"x":336.14801025390625,"y":-118.88555908203125,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_695.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:696","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.656280517578125,"width":12.87744140625,"x":322.8120422363281,"y":-139.84442138671875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_696.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:697","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.322845458984375,"width":14.5084228515625,"x":312.27801513671875,"y":-142.8756103515625,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_697.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:698","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.331558227539062,"width":14.506011962890625,"x":312.78497314453125,"y":-142.78919982910156,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_698.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:699","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.45648193359375,"width":20.59588623046875,"x":300.2002258300781,"y":-208.5166015625,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_699.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:700","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.34686279296875,"width":36.99432373046875,"x":307.67156982421875,"y":-92.84257507324219,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_700.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.862640380859375,"width":7.504119873046875,"x":301.9912414550781,"y":-93.82585144042969,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_701.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.508941650390625,"x":301.7341613769531,"y":-93.82585144042969,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_702.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:703","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9962615966796875,"width":7.17010498046875,"x":342.4722900390625,"y":-92.48686218261719,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_703.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:704","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.167694091796875,"x":342.726806640625,"y":-92.48686218261719,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_704.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:705","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.508941650390625,"x":301.7341613769531,"y":-93.82585144042969,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_705.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:706","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.167694091796875,"x":342.726806640625,"y":-92.48686218261719,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_706.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:707","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.960113525390625,"width":12.695343017578125,"x":307.56341552734375,"y":-208.52423095703125,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_707.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:708","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.329742431640625,"width":26.791839599609375,"x":307.07806396484375,"y":-222.33953857421875,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_708.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:709","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.241928100585938,"width":26.2550048828125,"x":307.0504455566406,"y":-222.3343963623047,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_709.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:710","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.654052734375,"width":33.68634033203125,"x":303.08172607421875,"y":-226.19964599609375,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_710.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:711","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7603607177734375,"width":2.88165283203125,"x":315.3001403808594,"y":-139.21942138671875,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_711.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:712","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.28337097167969,"width":97.68414306640625,"x":277.45086669921875,"y":-124.84367370605469,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_712.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:713","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5286865234375,"width":7.82342529296875,"x":302.9406433105469,"y":-114.33245849609375,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_713.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.7091217041015625,"width":4.710693359375,"x":316.6763916015625,"y":-109.70063781738281,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_714.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.860107421875,"width":4.80572509765625,"x":365.24871826171875,"y":-100.24639892578125,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_715.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:716","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.226776123046875,"width":47.598114013671875,"x":302.29638671875,"y":-93.82585144042969,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_716.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:717","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.59661865234375,"width":55.92401123046875,"x":298.0195007324219,"y":-95.69841003417969,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_717.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:718","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.663070678710938,"width":41.40667724609375,"x":277.4341735839844,"y":-124.85383605957031,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_718.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:719","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.9999771118164,"width":47.22564697265625,"x":272.55889892578125,"y":-197.13336181640625,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_719.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:720","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.09344482421875,"width":13.7567138671875,"x":300.2594299316406,"y":-134.13531494140625,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_720.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:721","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.346038818359375,"width":12.6510009765625,"x":300.38616943359375,"y":-145.46206665039062,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_721.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:722","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.183670043945312,"width":6.81390380859375,"x":306.8811950683594,"y":-151.17376708984375,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_722.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:723","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.5859375,"width":11.068878173828125,"x":294.0621032714844,"y":-175.78375244140625,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_723.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:724","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.262794494628906,"width":20.615631103515625,"x":280.277587890625,"y":-150.18795776367188,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_724.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:725","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.871017456054688,"width":14.134521484375,"x":358.07861328125,"y":-119.15995788574219,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_725.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:726","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":44.62644958496094,"width":15.66656494140625,"x":304.1178283691406,"y":-192.7512969970703,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_726.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:727","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9530487060546875,"width":11.93017578125,"x":347.91455078125,"y":-116.46163940429688,"z":78.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_727.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:728","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.1304931640625,"width":3.635101318359375,"x":358.1316223144531,"y":-119.15995788574219,"z":79.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_728.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:729","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":82.25939178466797,"width":56.373870849609375,"x":304.8919982910156,"y":-193.28884887695312,"z":80.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_729.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:730","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7742156982421875,"width":6.64276123046875,"x":327.545654296875,"y":-152.832275390625,"z":81.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_730.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:731","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.4514007568359375,"width":5.36956787109375,"x":326.36334228515625,"y":-142.00094604492188,"z":82.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_731.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:732","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.759552001953125,"width":11.0531005859375,"x":313.20538330078125,"y":-183.27651977539062,"z":83.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_732.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:733","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.236785888671875,"width":33.670867919921875,"x":303.0766906738281,"y":-217.96829223632812,"z":84.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_733.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:738","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.539520263671875,"x":257.7023010253906,"y":-151.25204467773438,"z":85.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_738.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:739","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.539520263671875,"x":257.7023010253906,"y":-151.25204467773438,"z":86.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_739.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:740","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.515533447265625,"width":1.85052490234375,"x":257.896240234375,"y":-150.68356323242188,"z":87.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_740.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:741","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7698211669921875,"width":0.849700927734375,"x":260.0867919921875,"y":-151.25143432617188,"z":88.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_741.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:742","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0737457275390625,"width":1.03497314453125,"x":264.12030029296875,"y":-151.15646362304688,"z":89.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_742.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:743","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.159088134765625,"width":1.83709716796875,"x":265.5904541015625,"y":-150.53799438476562,"z":90.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_743.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:744","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.506683349609375,"width":0.812164306640625,"x":258.93475341796875,"y":-149.67471313476562,"z":91.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_744.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:745","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.5869140625,"width":0.415679931640625,"x":260.0927429199219,"y":-150.06854248046875,"z":92.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_745.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:746","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.79107666015625,"width":3.365081787109375,"x":258.9144287109375,"y":-149.8669891357422,"z":93.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_746.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:747","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.66058349609375,"width":0.492584228515625,"x":264.6604919433594,"y":-149.74331665039062,"z":94.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_747.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:748","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.242431640625,"width":0.747283935546875,"x":265.5904541015625,"y":-149.62643432617188,"z":95.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_748.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:749","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.27117919921875,"width":4.085052490234375,"x":262.31060791015625,"y":-149.54736328125,"z":96.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_749.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:750","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.738006591796875,"x":258.3196716308594,"y":-136.4829864501953,"z":97.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_750.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:751","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.499298095703125,"x":257.4065246582031,"y":-141.668701171875,"z":98.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_751.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:752","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.738006591796875,"x":258.3196716308594,"y":-136.4829864501953,"z":99.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_752.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:753","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.499298095703125,"x":257.4065246582031,"y":-141.668701171875,"z":100.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_753.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:754","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.738006591796875,"x":258.6967468261719,"y":-136.4829864501953,"z":101.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_754.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:755","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2195587158203125,"width":1.3768310546875,"x":260.9027404785156,"y":-146.29547119140625,"z":102.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_755.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:756","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.663604736328125,"width":1.802001953125,"x":262.31060791015625,"y":-145.93978881835938,"z":103.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_756.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:757","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.356536865234375,"width":4.884918212890625,"x":259.2302551269531,"y":-146.12835693359375,"z":104.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_757.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:758","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":259.888427734375,"y":-148.53390502929688,"z":105.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_758.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:759","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":259.87408447265625,"y":-147.60397338867188,"z":106.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_759.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:760","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.379638671875,"x":265.34295654296875,"y":-148.35093688964844,"z":107.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_760.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:761","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014739990234375,"width":0.379638671875,"x":260.9432678222656,"y":-143.58192443847656,"z":108.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_761.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:762","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":264.9513244628906,"y":-146.80618286132812,"z":109.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_762.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:763","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":263.002685546875,"y":-144.74560546875,"z":110.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_763.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:764","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":260.5324401855469,"y":-148.135009765625,"z":111.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_764.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:765","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":264.8241271972656,"y":-147.75387573242188,"z":112.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_765.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:766","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":264.17999267578125,"y":-146.20909118652344,"z":113.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_766.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:767","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":262.20001220703125,"y":-143.73182678222656,"z":114.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_767.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:768","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.379638671875,"x":261.79168701171875,"y":-144.71258544921875,"z":115.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_768.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:769","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.379638671875,"x":260.8159484863281,"y":-146.9230499267578,"z":116.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_769.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:770","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.581817626953125,"width":5.738006591796875,"x":258.6967468261719,"y":-136.4829864501953,"z":117.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_770.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:771","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.499298095703125,"x":257.7837829589844,"y":-141.668701171875,"z":118.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_771.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:772","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.379638671875,"x":262.4524230957031,"y":-142.8349151611328,"z":119.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_772.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:773","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.40142822265625,"width":0.379638671875,"x":261.3205261230469,"y":-142.58340454101562,"z":120.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_773.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:774","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.2418670654296875,"width":6.84332275390625,"x":484.2117919921875,"y":-175.2761688232422,"z":121.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_774.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:775","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0942840576171875,"width":7.04278564453125,"x":483.43548583984375,"y":-180.99705505371094,"z":122.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_775.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:776","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.396514892578125,"width":6.802490234375,"x":483.21209716796875,"y":-187.5743408203125,"z":123.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_776.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:777","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2618408203125,"width":6.393951416015625,"x":483.28179931640625,"y":-193.83880615234375,"z":124.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_777.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:778","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2097320556640625,"width":6.271484375,"x":483.71185302734375,"y":-199.59494018554688,"z":125.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_778.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:779","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.639190673828125,"width":5.478485107421875,"x":484.3150329589844,"y":-205.41445922851562,"z":126.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_779.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:780","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2234344482421875,"width":4.6807861328125,"x":484.82421875,"y":-211.91363525390625,"z":127.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_780.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:781","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0074615478515625,"width":4.190521240234375,"x":485.03826904296875,"y":-218.01150512695312,"z":128.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_781.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:782","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.194686889648438,"width":1.782989501953125,"x":485.0334777832031,"y":-226.58917236328125,"z":129.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_782.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:783","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.892318725585938,"width":2.90008544921875,"x":482.06109619140625,"y":-234.63327026367188,"z":130.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_783.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:784","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.567901611328125,"width":6.2618408203125,"x":477.69036865234375,"y":-166.89166259765625,"z":131.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_784.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:785","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1551513671875,"width":7.689117431640625,"x":476.6210021972656,"y":-173.49844360351562,"z":132.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_785.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:786","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2594451904296875,"width":7.669891357421875,"x":476.046875,"y":-179.70408630371094,"z":133.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_786.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:787","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.728424072265625,"width":6.53814697265625,"x":477.1351318359375,"y":-188.0205841064453,"z":134.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_787.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:788","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9545135498046875,"width":5.61785888671875,"x":477.8175964355469,"y":-194.54420471191406,"z":135.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_788.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:789","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.454254150390625,"width":6.007080078125,"x":478.24774169921875,"y":-200.15451049804688,"z":136.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_789.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:790","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9043731689453125,"width":3.892578125,"x":480.7996826171875,"y":-206.79396057128906,"z":137.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_790.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:791","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.5308837890625,"width":4.241058349609375,"x":480.7084045410156,"y":-212.34811401367188,"z":138.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_791.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:792","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.640106201171875,"width":3.18621826171875,"x":482.265380859375,"y":-218.25033569335938,"z":139.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_792.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.307937622070312,"width":4.2554931640625,"x":481.04461669921875,"y":-226.00732421875,"z":140.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_793.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:794","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.194015502929688,"width":7.28546142578125,"x":477.47637939453125,"y":-232.21697998046875,"z":141.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_794.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:795","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.97296142578125,"width":7.44891357421875,"x":475.35943603515625,"y":-236.32797241210938,"z":142.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_795.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:796","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.97601318359375,"width":2.87078857421875,"x":482.41436767578125,"y":-228.92413330078125,"z":143.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_796.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:797","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.387466430664062,"width":2.0880126953125,"x":483.1640625,"y":-211.71798706054688,"z":144.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_797.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:798","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.034042358398438,"width":2.0447998046875,"x":483.0726013183594,"y":-187.12579345703125,"z":145.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_798.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:799","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.219207763671875,"width":5.440093994140625,"x":502.42041015625,"y":-182.61740112304688,"z":146.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_799.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:800","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.465606689453125,"width":7.54022216796875,"x":502.80743408203125,"y":-188.40798950195312,"z":147.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_800.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.13604736328125,"width":7.73236083984375,"x":503.5570373535156,"y":-194.58685302734375,"z":148.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_801.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:802","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.921234130859375,"width":7.65069580078125,"x":504.5206298828125,"y":-200.73797607421875,"z":149.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_802.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:803","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.80780029296875,"width":7.540191650390625,"x":506.0704040527344,"y":-206.20916748046875,"z":150.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_803.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:804","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.376251220703125,"width":6.586212158203125,"x":507.9709167480469,"y":-211.88772583007812,"z":151.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_804.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:805","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0902252197265625,"width":5.882232666015625,"x":509.6603698730469,"y":-218.26046752929688,"z":152.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_805.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:806","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9936981201171875,"width":5.2574462890625,"x":511.20050048828125,"y":-224.28721618652344,"z":153.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_806.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:807","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.724624633789062,"width":3.25604248046875,"x":511.8515625,"y":-233.36288452148438,"z":154.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_807.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:808","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.235321044921875,"width":1.40521240234375,"x":512.6807861328125,"y":-242.10824584960938,"z":155.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_808.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:809","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.867462158203125,"width":3.02044677734375,"x":494.6614990234375,"y":-175.76087951660156,"z":156.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_809.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:810","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.7657623291015625,"width":7.244537353515625,"x":495.1710510253906,"y":-182.8802490234375,"z":157.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_810.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:811","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.8140869140625,"width":7.285400390625,"x":495.7982177734375,"y":-189.03988647460938,"z":158.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_811.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:812","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9170684814453125,"width":5.34637451171875,"x":498.77783203125,"y":-197.5251922607422,"z":159.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_812.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:813","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.94354248046875,"width":4.18572998046875,"x":500.72894287109375,"y":-203.76535034179688,"z":160.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_813.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:814","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.597976684570312,"width":4.642333984375,"x":502.23541259765625,"y":-209.18482971191406,"z":161.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_814.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:815","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.5115966796875,"width":2.58148193359375,"x":505.9110107421875,"y":-215.14295959472656,"z":162.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_815.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:816","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.254989624023438,"width":2.7984619140625,"x":507.00592041015625,"y":-220.59800720214844,"z":163.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_816.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:817","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.074600219726562,"width":2.131622314453125,"x":509.44610595703125,"y":-226.0352783203125,"z":164.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_817.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:818","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.016815185546875,"width":2.4473876953125,"x":509.7239990234375,"y":-233.89390563964844,"z":165.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_818.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:819","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.604141235351562,"width":5.52679443359375,"x":507.7232666015625,"y":-240.7463836669922,"z":166.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_819.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.378005981445312,"width":5.810089111328125,"x":506.4550476074219,"y":-245.22830200195312,"z":167.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_820.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:821","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.189422607421875,"width":2.218780517578125,"x":510.9458923339844,"y":-236.43975830078125,"z":168.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_821.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.457550048828125,"width":6.992340087890625,"x":504.35955810546875,"y":-218.98208618164062,"z":169.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_822.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.145172119140625,"width":2.806549072265625,"x":502.0504455566406,"y":-195.38333129882812,"z":170.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_823.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"479:824","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":247.0,"y":-270.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_824.png","prototypeNodeUUID":"492:3122","type":"image"}]},"isVisible":true},{"UUID":"479:826","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:826","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1818.0,"y":-320.0,"z":15.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:827","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2043.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2120.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2086.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_827;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_827;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2062.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_827;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_827;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:827;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2043.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_827;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_827;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:829","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":1844.0,"y":35.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"479:830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":1954.0,"y":276.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"479:831","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":1843.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_831.png","prototypeNodeUUID":"479:559","type":"image"},{"UUID":"479:832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":1923.0,"y":-284.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"479:833","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":1844.0,"y":22.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:834","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":1844.0,"y":87.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:835","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":1844.0,"y":152.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:836","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":2043.0,"y":152.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"479:837","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":1843.0,"y":199.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:838","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":1967.0,"y":211.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"479:839","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2130.0,"y":56.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_839.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:842","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":1844.0,"y":-26.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"500:416","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"479:843","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":1842.0,"y":32.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"479:844","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":1842.0,"y":97.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"479:845","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":2043.0,"y":98.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"479:846","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 158","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.25,"width":245.0,"x":1875.0,"y":-223.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_846.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:854","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"history","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"history","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2618.0,"y":-320.0,"z":18.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:855","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2843.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2920.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2886.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_855;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_855;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2862.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_855;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_855;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:855;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2843.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_855;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_855;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:856","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2905.0,"y":-196.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_856.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:857","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2905.0,"y":-120.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_857.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:858","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":2645.0,"y":-270.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_858.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:859","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":181.0,"x":2709.0,"y":-285.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"479:860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":2643.0,"y":-206.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:861","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":2643.0,"y":-130.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"JABI LAKE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":2676.0,"y":-204.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"JABI LAKE "},{"UUID":"479:863","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"MAITAMA","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":2677.0,"y":-126.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"MAITAMA "},{"UUID":"479:864","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 7:41 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":2677.0,"y":-185.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 7:41 AM "},{"UUID":"479:865","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 8:58 PM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":106.0,"x":2677.0,"y":-107.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 8:58 PM "},{"UUID":"479:866","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"DELIVERY COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":123.0,"x":2677.0,"y":-170.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"DELIVERY COMPLETED "},{"UUID":"479:867","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":97.0,"x":2677.0,"y":-92.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED "},{"UUID":"479:868","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2910.0,"y":-107.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_868.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:869","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":2911.0,"y":-184.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_869.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:870","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Support","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:870","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3017.0,"y":-320.0,"z":19.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:871","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3242.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3319.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3285.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_871;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_871;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3261.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_871;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_871;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:871;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3242.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_871;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_871;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:872","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":3044.0,"y":-270.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_872.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:873","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":197.0,"x":3100.0,"y":-285.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi Support"},{"UUID":"479:874","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":3001.0,"y":-208.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:875","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 26","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3003.0,"y":-157.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:876","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 27","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3003.0,"y":-100.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:877","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 31","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3003.0,"y":8.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:878","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 33","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":2997.0,"y":116.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:879","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 30","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":2997.0,"y":-49.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3003.0,"y":59.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 34","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":3004.0,"y":167.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:882","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Reach us: +2348136192991","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":189.0,"x":3042.0,"y":-193.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Reach us: +2348136192991"},{"UUID":"479:883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social Media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":186.0,"x":3042.0,"y":-143.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social Media"},{"UUID":"479:884","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":3042.0,"y":-87.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"479:885","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":3042.0,"y":21.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"479:886","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":100.0,"x":3042.0,"y":129.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"479:887","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":83.0,"x":3042.0,"y":-37.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"479:888","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":3042.0,"y":70.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"479:889","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":229.0,"x":3042.0,"y":180.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"}]},"isVisible":true},{"UUID":"479:890","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"About","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:890","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3418.0,"y":-320.0,"z":20.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3643.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3720.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3686.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_891;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_891;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3662.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_891;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_891;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:891;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3643.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_891;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_891;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:892","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":3445.0,"y":-270.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_892.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:893","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":93.0,"x":3552.0,"y":-285.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"479:894","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 35","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":3403.0,"y":-208.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:895","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 36","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3405.0,"y":-157.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:896","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 37","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":3405.0,"y":-100.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:897","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 38","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3405.0,"y":8.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:898","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 39","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":3399.0,"y":112.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:899","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 40","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":3399.0,"y":-49.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:900","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 41","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":3405.0,"y":59.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:901","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 42","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":3406.0,"y":166.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:902","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 43","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":3406.0,"y":217.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:903","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate Us Now","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":96.0,"x":3444.0,"y":-194.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate Us Now"},{"UUID":"479:904","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Version 0.86","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":86.0,"x":3555.0,"y":-246.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Version 0.86"},{"UUID":"479:905","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":186.0,"x":3444.0,"y":-143.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social media"},{"UUID":"479:906","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":140.0,"x":3444.0,"y":-87.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"479:907","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":43.0,"x":3444.0,"y":22.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"479:908","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":100.0,"x":3443.0,"y":125.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"479:909","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":3444.0,"y":-39.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"479:910","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":116.0,"x":3442.0,"y":73.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"479:911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":229.0,"x":3443.0,"y":177.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"},{"UUID":"479:912","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Legal","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":42.0,"x":3442.0,"y":229.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Legal"}]},"isVisible":true},{"UUID":"479:913","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"feedback","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:913","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"feedback","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3819.0,"y":-320.0,"z":21.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:914","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":3656.0,"y":-839.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_914.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:915","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 51","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3819.0,"y":-320.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"479:916","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":168.0,"x":3915.0,"y":-89.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED"},{"UUID":"479:917","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"How is your trip?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":150.0,"x":3929.0,"y":-8.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"How is your trip?"},{"UUID":"479:918","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":100.0,"width":100.0,"x":3949.0,"y":-196.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_918.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:919","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 157","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":162.0,"x":3921.0,"y":27.0,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 156","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":3921.0,"y":27.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_920.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:926","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":3921.0,"y":27.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_926.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:927","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 52","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":115.0,"width":310.0,"x":3844.0,"y":83.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Additional Information","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":3854.0,"y":92.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Additional Information"},{"UUID":"479:929","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 53","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":110.0,"x":4044.0,"y":239.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:930","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"SUBMIT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":60.0,"x":4060.0,"y":243.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"SUBMIT"},{"UUID":"479:931","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":4132.0,"y":247.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_931.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:932","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:932","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":620.0,"y":-320.0,"z":22.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:933","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":239.0,"y":-544.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_933.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:934","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":915.0,"y":-12.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:935","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":915.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_935.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:936","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":929.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_936.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:938","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":645.0,"y":-9.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_938.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:939","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":703.0,"y":-9.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_939.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:940","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":655.0,"y":1.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_940.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:941","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":714.0,"y":2.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_941.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:944","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":688.0,"y":78.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:945","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":814.0,"y":78.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"479:946","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":703.0,"y":119.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"479:947","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":820.0,"y":119.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"479:948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":711.0,"y":94.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_948.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:954","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2996826171875,"x":839.0,"y":94.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_954.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:960","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":644.0,"y":227.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:961","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":751.0,"y":236.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"479:962","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.0843505859375,"x":828.0,"y":0.000011086463928222656,"z":14.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.08432388305664,"width":42.0843505859375,"x":828.0,"y":0.000011086463928222656,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_963.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:964","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625297546386719,"width":12.62530517578125,"x":842.729248046875,"y":14.72950553894043,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_964.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:966","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":845.0,"y":-303.0,"z":15.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":922.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":888.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_966;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_966;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":864.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_966;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_966;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:966;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":845.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_966;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_966;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:967","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":647.0,"y":-270.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_967.png","prototypeNodeUUID":"492:3122","type":"image"},{"UUID":"479:968","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":632.0,"y":-220.0,"z":17.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"438:117","parameters":null,"overrideValues":[{"UUID":"443:118","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":645.0,"y":-56.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},"valueName":"Car model: Honda Civic","type":"stringValue"},{"UUID":"443:119","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car colour: Grey","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":646.0,"y":-36.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"},"valueName":"Car colour: Grey","type":"stringValue"},{"UUID":"441:111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;441:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47808837890625,"width":9.92523193359375,"x":720.0374145507812,"y":-102.19964599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_968;441_111.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_968;441_111.png","type":"image"},{"UUID":"441:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;441:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.149429321289062,"width":24.97125244140625,"x":907.9883422851562,"y":-96.28349304199219,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_968;441_116.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_968;441_116.png","type":"image"},{"UUID":"443:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 438","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:968;443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":898.0,"y":-103.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_968;443_117.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_968;443_117.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:969","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":269.0,"x":645.0,"y":21.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:970","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":669.0,"y":35.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"479:971","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":800.0,"y":21.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:972","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":841.0,"y":33.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"479:973","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5 MINs","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":68.0,"x":766.0,"y":-173.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5 MINs "},{"UUID":"479:974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"GXM 507 AJ","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":84.0,"x":713.0,"y":-89.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"GXM 507 AJ "},{"UUID":"479:975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your rider will be at your location in","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":286.0,"x":656.0,"y":-197.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your rider will be at your location in "},{"UUID":"479:976","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tunde Kareem","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":91.0,"x":713.0,"y":-121.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Tunde Kareem"},{"UUID":"479:977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5.0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":736.0,"y":-104.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5.0"},{"UUID":"479:978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 148","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":656.0,"y":126.0,"z":27.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:979","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want someone to join your ride?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":656.0,"y":126.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want someone to join your ride?"}],"type":"group"},{"UUID":"479:980","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 149","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":656.0,"y":179.0,"z":28.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:981","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want to negotiate with driver?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":656.0,"y":179.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want to negotiate with driver?"}],"type":"group"},{"UUID":"479:982","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":310.0,"x":645.0,"y":117.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:983","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 48","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":311.0,"x":644.0,"y":172.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 154","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":865.0,"y":124.0,"z":31.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:985","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 151","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":124.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":124.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"479:987","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":865.0,"y":138.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"479:988","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 153","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":865.0,"y":179.0,"z":32.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:989","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 152","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":179.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"479:990","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":866.0,"y":179.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"479:991","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":865.0,"y":193.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"479:992","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":33.0,"x":698.0,"y":243.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"479:993","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":31.0,"x":787.0,"y":243.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Card"},{"UUID":"479:994","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 435","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":764.0,"y":244.0,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_994.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:995","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 436","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":675.0,"y":244.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_995.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:996","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 49","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":84.0,"x":841.0,"y":236.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:999","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"479:997","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Confirm","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":50.0,"x":858.0,"y":240.0,"z":38.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Confirm "},{"UUID":"479:998","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":64.0,"x":645.0,"y":-127.0,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_998.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"479:999","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"travel screen","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"479:999","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"travel screen","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:913","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1020.0,"y":-320.0,"z":25.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"479:1000","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1681.379638671875,"width":1697.7115478515625,"x":413.2889099121094,"y":-796.6085205078125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/479_1000.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1001","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1245.0,"y":-303.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1322.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1288.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1001;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1001;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1264.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1001;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1001;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I479:1001;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1245.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I479_1001;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I479_1001;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"479:1002","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":253.50001525878906,"width":82.0,"x":1093.5,"y":-166.5,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1002.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1003","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.2279052734375,"x":1148.0,"y":-195.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/479_1003.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 155","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":1140.0,"y":71.99999237060547,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"479:1007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":1140.0,"y":71.99999237060547,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1007.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:1008","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.047477722167969,"width":9.0474853515625,"x":1150.55517578125,"y":82.55551147460938,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_1008.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"479:1010","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 46","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":240.0,"x":1080.0,"y":160.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:1011","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1hrs 15 mins","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":122.0,"x":1139.0,"y":169.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"1hrs 15 mins "},{"UUID":"479:1012","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Approximated Travel Time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":158.0,"x":1121.0,"y":139.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Approximated Travel Time "}]},"isVisible":true},{"UUID":"481:1256","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logo","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"481:1256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"logo","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:1065","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4179.0,"y":378.0,"z":28.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"481:1257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-4571.0,"y":378.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/481_1257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"WhatsApp_Image_2021-07-23_at_8.10 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":91.0,"width":200.0,"x":-4099.0,"y":636.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/481_1258.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"481:1259","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"481:1259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:169","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-3779.0,"y":378.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"481:1260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.07373046875,"x":-3885.0,"y":177.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"481:1261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-3554.0,"y":395.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-3477.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-3511.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I481_1261;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I481_1261;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-3534.125,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I481_1261;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I481_1261;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I481:1261;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-3554.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I481_1261;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I481_1261;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"481:1262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":-3752.0,"y":799.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"481:1263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our rides are negotiable and convenient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":263.0,"x":-4042.0,"y":849.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our rides are negotiable and convenient"},{"UUID":"481:1264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":-4041.0,"y":816.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"481:1265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":-3673.0,"y":964.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"481:1266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":-3673.0,"y":964.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"481:1267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 147","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":56.08740234375,"x":-3491.0,"y":908.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"481:1268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":-3491.0,"y":908.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"481:1269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":-3445.0,"y":912.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1269.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"481:1270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":-3753.0,"y":425.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"481:1271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":268.20269775390625,"width":406.095703125,"x":-3777.095703125,"y":464.0,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.2197265625,"width":0.056884765625,"x":-3754.967529296875,"y":658.1862182617188,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.21978759765625,"width":3.597900390625,"x":-3691.346923828125,"y":681.002197265625,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1273.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.181304931640625,"width":8.8701171875,"x":-3561.126220703125,"y":486.261962890625,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":223.26889038085938,"width":75.3984375,"x":-3612.343017578125,"y":506.6949157714844,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":225.50778198242188,"width":30.410888671875,"x":-3536.944580078125,"y":506.6949157714844,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.720458984375,"y":528.8755493164062,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3580.34619140625,"y":528.8755493164062,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.97216796875,"y":528.8755493164062,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.403564453125,"y":554.859375,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1280.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3580.029541015625,"y":554.859375,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.655517578125,"y":554.859375,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3598.086669921875,"y":580.84326171875,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.712646484375,"y":580.84326171875,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1284.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.338623046875,"y":580.84326171875,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1285.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.77001953125,"y":606.8270874023438,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1286.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.39599609375,"y":606.8270874023438,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1287.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3561.021728515625,"y":606.8270874023438,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.453125,"y":632.8109130859375,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1289.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3579.0791015625,"y":632.8109130859375,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1290.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1291","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.705078125,"y":632.8109130859375,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1291.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3597.13623046875,"y":658.7947387695312,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1292.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3578.76220703125,"y":658.7947387695312,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1293.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.38818359375,"y":658.7947387695312,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1294.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1295","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3596.819580078125,"y":684.778564453125,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1295.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1296","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3578.445556640625,"y":684.778564453125,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1296.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1297","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3560.071533203125,"y":684.778564453125,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1297.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1298","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.92083740234375,"width":11.403076171875,"x":-3596.501220703125,"y":710.7617797851562,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1298.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1299","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.409912109375,"width":11.406982421875,"x":-3578.1298828125,"y":710.76171875,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1299.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3559.754638671875,"y":710.762451171875,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1300.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.1463623046875,"width":8.8701171875,"x":-3457.746826171875,"y":599.2220458984375,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1301.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":120.96282958984375,"width":75.398681640625,"x":-3517.304443359375,"y":611.2398681640625,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1302.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":110.17413330078125,"width":30.41064453125,"x":-3441.90576171875,"y":611.2398681640625,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1303.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3502.414794921875,"y":632.8109130859375,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1304.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3484.040771484375,"y":632.8109130859375,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1305.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.666748046875,"y":632.8109130859375,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1306.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3502.09814453125,"y":658.7947387695312,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1307.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3483.72412109375,"y":658.7947387695312,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1308.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.349853515625,"y":658.7947387695312,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1309.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3501.78125,"y":684.778564453125,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1310.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3483.4072265625,"y":684.778564453125,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1311.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3465.033203125,"y":684.778564453125,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1312.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3501.464599609375,"y":710.762451171875,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1313.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3483.09033203125,"y":710.762451171875,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1314.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":-3464.71630859375,"y":710.762451171875,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1315.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.06048583984375,"width":45.384765625,"x":-3508.379638671875,"y":735.4152221679688,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1316.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":73.2117919921875,"width":167.767578125,"x":-3747.372314453125,"y":672.568603515625,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1317.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":52.6849365234375,"width":35.381591796875,"x":-3746.602783203125,"y":685.2234497070312,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1318.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.35693359375,"width":50.770751953125,"x":-3628.74365234375,"y":695.64306640625,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1319.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":79.509521484375,"width":295.288330078125,"x":-3747.69775390625,"y":666.9268188476562,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1320.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.98504638671875,"width":206.461669921875,"x":-3730.58154296875,"y":621.5303344726562,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1321.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.4842529296875,"width":293.618896484375,"x":-3744.879150390625,"y":652.0650634765625,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1322.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.6737060546875,"width":12.59228515625,"x":-3703.9609375,"y":666.795654296875,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1323.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.54595947265625,"width":11.54296875,"x":-3563.20849609375,"y":715.9970703125,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1324.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.8516845703125,"width":30.029052734375,"x":-3581.661865234375,"y":666.5914306640625,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1325.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.84014892578125,"width":24.343017578125,"x":-3479.78759765625,"y":663.2792358398438,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1326.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.721435546875,"width":28.926513671875,"x":-3722.55224609375,"y":628.3382568359375,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1327.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.9222412109375,"width":44.819580078125,"x":-3690.07958984375,"y":623.17919921875,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1328.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.51434326171875,"width":99.5126953125,"x":-3635.99560546875,"y":623.4983520507812,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1329.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.985595703125,"width":151.693359375,"x":-3712.80322265625,"y":614.0552368164062,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1330.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.737060546875,"width":17.839111328125,"x":-3743.9609375,"y":693.954833984375,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1331.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":46.97100830078125,"width":28.332763671875,"x":-3624.59619140625,"y":706.2879638671875,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1332.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.18890380859375,"width":11.805419921875,"x":-3660.011962890625,"y":654.7661743164062,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1333.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.645263671875,"width":20.46240234375,"x":-3674.572021484375,"y":647.37744140625,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1334.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.01025390625,"width":85.916259765625,"x":-3539.8603515625,"y":685.032958984375,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1335.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06146240234375,"width":68.810546875,"x":-3530.766357421875,"y":688.3115234375,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1336.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.17645263671875,"width":74.845458984375,"x":-3534.289794921875,"y":690.8057861328125,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1337.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0953369140625,"width":80.26806640625,"x":-3537.08740234375,"y":694.193603515625,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1338.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"481:1339","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 142","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.6173095703125,"width":93.194580078125,"x":-3779.0,"y":595.8372802734375,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/481_1339.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"492:1439","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:1439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2580.0,"y":-320.0,"z":29.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:1603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2355.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1604","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2312.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1604.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1605","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-2336.0,"y":-302.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:1606","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2335.125,"y":-301.25,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1606.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1608","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2355.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1608.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1609","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2278.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1441","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":-2529.0,"y":-199.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"492:1442","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":-139.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"492:1443","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":-139.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1443.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":-2517.0,"y":-128.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"492:1445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7034675467","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":-2468.0,"y":-128.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7034675467"},{"UUID":"492:1446","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-2304.0,"y":-125.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"492:1447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":-2537.0,"y":-121.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1447.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1448","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":-2501.0,"y":20.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"492:1449","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2553.0,"y":-58.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:365","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:1450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":-2423.0,"y":-50.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"492:1451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2358.0,"y":20.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1451.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":20.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":20.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1456","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-2398.0,"y":23.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1456.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":20.0,"z":8.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":20.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1463.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1465","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326332092285,"width":23.0,"x":-2318.0,"y":23.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1465.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1538","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2580.0,"y":83.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1539","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2580.0,"y":83.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1540","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2574.0,"y":99.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1541","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":99.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1542","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":141.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:1543","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2557.0,"y":184.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:1544","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2521.0,"y":227.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:1545","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":99.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:1546","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":141.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:1547","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2522.0,"y":184.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:1548","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2486.0,"y":227.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:1549","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":99.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:1550","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":141.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:1551","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2487.0,"y":184.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:1552","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2451.0,"y":227.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:1553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":99.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":141.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:1555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2452.0,"y":184.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:1556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2416.0,"y":227.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:1557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":99.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1558","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":141.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:1559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2417.0,"y":184.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:1560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2381.0,"y":227.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:1561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":99.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:1562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":141.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:1563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2382.0,"y":184.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:1564","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2346.0,"y":227.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:1565","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":99.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:1566","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":141.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:1567","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2347.0,"y":184.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:1568","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2311.0,"y":227.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:1569","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":99.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:1570","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":141.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:1571","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2312.0,"y":184.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:1572","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":99.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:1573","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":141.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:1574","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2277.0,"y":184.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:1575","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":99.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:1576","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":141.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:1577","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2555.66015625,"y":238.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1577.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1582","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-2266.0,"y":237.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1583","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-2260.0,"y":238.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1584","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-2266.0,"y":237.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1584.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-2257.0,"y":242.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1585.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1588","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2451.0,"y":271.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1588.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1590","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2311.0,"y":278.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:1591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2524.0,"y":278.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:1592","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2565.0,"y":275.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:1593","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2482.0,"y":280.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1593.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1598","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":278.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":278.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1599.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-2260.0,"y":288.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1600.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"492:1614","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:1614","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:1439","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2580.0,"y":1076.0,"z":30.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:1615","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-2355.0,"y":1093.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1616","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-2312.0,"y":1094.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1616.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1617","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-2336.0,"y":1094.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:1618","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-2335.125,"y":1094.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1618.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-2355.0,"y":1095.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1620.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1621","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-2278.0,"y":1093.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":-2529.0,"y":1197.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"492:1623","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":1257.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"492:1624","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":-2553.0,"y":1257.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1624.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1625","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":-2517.0,"y":1268.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"492:1627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-2304.0,"y":1271.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"492:1628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":-2537.0,"y":1275.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1628.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1629","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":-2501.0,"y":1416.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"492:1630","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2553.0,"y":1338.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:1631","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":-2423.0,"y":1346.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"492:1632","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2358.0,"y":1416.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1632.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":1416.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1636","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2398.0,"y":1416.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1637","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-2398.0,"y":1419.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1637.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1643","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":1416.0,"z":8.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1644","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-2319.0,"y":1416.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1644.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1646","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.9132080078125,"width":23.0,"x":-2318.0,"y":1419.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1646.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:1648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2580.0,"y":1479.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1649","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2580.0,"y":1479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1650","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2574.0,"y":1495.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1651","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2574.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:1653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2557.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:1654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2521.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:1655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:1656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2539.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:1657","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2522.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:1658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2486.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:1659","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:1660","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2504.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:1661","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2487.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:1662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2451.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:1663","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1664","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2469.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:1665","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2452.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:1666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2416.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:1667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1668","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2434.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:1669","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2417.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:1670","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2381.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:1671","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:1672","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2399.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:1673","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2382.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:1674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2346.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:1675","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:1676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2364.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:1677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2347.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:1678","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2311.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:1679","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:1680","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2329.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:1681","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2312.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:1682","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:1683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2294.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:1684","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2277.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:1685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:1686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2259.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:1687","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2555.66015625,"y":1634.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1687.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1692","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-2266.0,"y":1633.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1693","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-2260.0,"y":1634.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-2266.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1694.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-2257.0,"y":1638.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1695.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1698","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2451.0,"y":1667.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1698.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1700","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2311.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:1701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2524.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:1702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2565.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:1703","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2482.0,"y":1676.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1703.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1708","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":1674.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1709","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-2267.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1709.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1710","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-2260.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_1710.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"492:1870","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:1870","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2203","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2180.0,"y":378.0,"z":6.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2022","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1955.0,"y":395.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2023","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1912.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2023.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2024","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1936.0,"y":396.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2025","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1935.125,"y":396.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2025.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2027","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1955.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2027.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2028","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1878.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1872","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":-2058.0,"y":497.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"492:1873","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":-2082.0,"y":678.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"492:1874","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":-2137.0,"y":543.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"492:1875","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":-2101.0,"y":514.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"492:1876","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2100.0,"y":619.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1876.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1877","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2043.0,"y":619.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1877.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1878","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1987.0,"y":619.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1878.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1879","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1935.0,"y":619.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_1879.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:1880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2154.0,"y":712.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:1881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":-2021.0,"y":720.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"492:1957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":781.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1958","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2180.0,"y":781.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:1959","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2174.0,"y":797.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:1960","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":797.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1961","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":839.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:1962","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":882.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:1963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":925.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:1964","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":797.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:1965","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":839.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:1966","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":882.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:1967","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":925.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:1968","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":797.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:1969","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":839.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:1970","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":882.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:1971","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":925.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:1972","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":797.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1973","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":839.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:1974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":882.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:1975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":925.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:1976","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":797.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":839.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:1978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":882.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:1979","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":925.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:1980","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":797.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:1981","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":839.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:1982","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":882.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:1983","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":925.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:1984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":797.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:1985","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":839.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:1986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":882.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:1987","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":925.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:1988","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":797.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:1989","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":839.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:1990","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":882.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:1991","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":797.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:1992","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":839.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:1993","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":882.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:1994","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":797.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:1995","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":839.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:1996","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":936.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_1996.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2001","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1866.0,"y":935.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2002","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1860.0,"y":936.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2003","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":935.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2003.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2004","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-1857.0,"y":940.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2004.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2007","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2051.0,"y":969.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2007.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2009","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":976.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:2010","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":976.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:2011","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":973.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:2012","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":978.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2012.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2017","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":976.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2018","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":976.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2018.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2019","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1860.0,"y":986.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2019.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:1883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":5.0,"x":-2085.0,"y":627.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:1884","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":9.0,"x":-2030.0,"y":627.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:1885","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":9.0,"x":-1974.0,"y":627.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:1886","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":9.0,"x":-1922.0,"y":627.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"}]},"isVisible":true},{"UUID":"492:2203","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:2203","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-2180.0,"y":1076.0,"z":31.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1955.0,"y":1093.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2356","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1912.0,"y":1094.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2356.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1936.0,"y":1094.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2358","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1935.125,"y":1094.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2358.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1955.0,"y":1095.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2360.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1878.0,"y":1093.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":-2058.0,"y":1195.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"492:2206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":-2082.0,"y":1376.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"492:2207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":-2137.0,"y":1241.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"492:2208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":-2101.0,"y":1212.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"492:2209","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2100.0,"y":1317.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2209.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2210","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-2043.0,"y":1317.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2211","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1987.0,"y":1317.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2211.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":-1935.0,"y":1317.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2212.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":-2154.0,"y":1410.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"532:437","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:2214","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":-2021.0,"y":1418.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"492:2215","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":1479.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"492:2215","overrideProperties":[{"UUID":"492:2279","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":-1860.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2279.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2278","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":-1860.0,"y":1684.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2278.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2276","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2276.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2274","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":-2078.0,"y":1685.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2274.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2273","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 4","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2073.0,"y":1681.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2273.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2272","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2078.0,"y":1681.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2272.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2271","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":1676.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2271.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2269","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr?123","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"type":"stringValue"},{"UUID":"492:2268","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr,","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"type":"stringValue"},{"UUID":"492:2267","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr.","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"type":"stringValue"},{"UUID":"492:2261","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrPolygon 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"492:2261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2261.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2255","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShift","child":null,"constraints":null,"value":{"UUID":"492:2255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":1634.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/492_2255.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"492:2253","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrp","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"type":"stringValue"},{"UUID":"492:2252","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr0","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"type":"stringValue"},{"UUID":"492:2251","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrl","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"type":"stringValue"},{"UUID":"492:2250","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovro","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"type":"stringValue"},{"UUID":"492:2249","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr9","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"type":"stringValue"},{"UUID":"492:2248","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrk","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"type":"stringValue"},{"UUID":"492:2247","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovri","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"type":"stringValue"},{"UUID":"492:2246","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr8","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"type":"stringValue"},{"UUID":"492:2245","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrm","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"type":"stringValue"},{"UUID":"492:2244","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrj","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"type":"stringValue"},{"UUID":"492:2243","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovru","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"type":"stringValue"},{"UUID":"492:2242","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr7","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"type":"stringValue"},{"UUID":"492:2241","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrn","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"type":"stringValue"},{"UUID":"492:2240","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrh","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"type":"stringValue"},{"UUID":"492:2239","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovry","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"type":"stringValue"},{"UUID":"492:2238","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr6","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"type":"stringValue"},{"UUID":"492:2237","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrb","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"type":"stringValue"},{"UUID":"492:2236","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrg","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"type":"stringValue"},{"UUID":"492:2235","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrt","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"type":"stringValue"},{"UUID":"492:2234","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr5","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"type":"stringValue"},{"UUID":"492:2233","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrv","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"type":"stringValue"},{"UUID":"492:2232","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrf","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"type":"stringValue"},{"UUID":"492:2231","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrr","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"type":"stringValue"},{"UUID":"492:2230","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr4","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"type":"stringValue"},{"UUID":"492:2229","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrc","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"type":"stringValue"},{"UUID":"492:2228","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrd","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"type":"stringValue"},{"UUID":"492:2227","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovre","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"type":"stringValue"},{"UUID":"492:2226","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr3","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"type":"stringValue"},{"UUID":"492:2225","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrx","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"type":"stringValue"},{"UUID":"492:2224","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrs","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"type":"stringValue"},{"UUID":"492:2223","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrw","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"type":"stringValue"},{"UUID":"492:2222","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr2","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"type":"stringValue"},{"UUID":"492:2221","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrz","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"type":"stringValue"},{"UUID":"492:2220","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovra","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"type":"stringValue"},{"UUID":"492:2219","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrq","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"type":"stringValue"},{"UUID":"492:2218","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr1","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"492:2218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"type":"stringValue"}],"children":[{"UUID":"492:2216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-2180.0,"y":1479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-2174.0,"y":1495.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:2219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:2220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:2221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:2222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:2223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:2224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:2225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:2226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:2227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:2228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:2229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:2230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:2231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:2232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:2233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:2234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:2235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:2236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:2237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:2238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:2239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:2240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:2241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:2242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:2243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:2244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:2245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:2246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:2247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:2248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:2249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:2250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:2251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:2252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:2253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:2254","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":1634.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1866.0,"y":1633.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1860.0,"y":1634.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2261.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5,"width":6.0,"x":-1857.0,"y":1638.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2262.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2265","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-2051.0,"y":1667.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2265.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:2268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:2269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:2270","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":1676.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1860.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2277.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"492:2280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-2180.0,"y":1479.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"492:2215","parameters":null,"overrideValues":[{"UUID":"492:2279","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":-1860.0,"y":1684.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2279.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2279.png","type":"image"},{"UUID":"492:2278","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":-1860.0,"y":1684.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2278.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2278.png","type":"image"},{"UUID":"492:2276","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1867.0,"y":1674.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2276.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2276.png","type":"image"},{"UUID":"492:2274","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector 1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":-2078.0,"y":1685.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2274.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2274.png","type":"image"},{"UUID":"492:2273","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2073.0,"y":1681.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2273.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2273.png","type":"image"},{"UUID":"492:2272","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":-2078.0,"y":1681.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2272.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2272.png","type":"image"},{"UUID":"492:2271","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-2082.0,"y":1676.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2271.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2271.png","type":"image"},{"UUID":"492:2269","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"?123","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-2165.0,"y":1671.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"valueName":"?123","type":"stringValue"},{"UUID":"492:2268","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":",","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-2124.0,"y":1674.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"valueName":",","type":"stringValue"},{"UUID":"492:2267","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":".","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1911.0,"y":1674.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"valueName":".","type":"stringValue"},{"UUID":"492:2261","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Polygon 2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:2280;492:2261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1866.0,"y":1633.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_2280;492_2261.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2261.png","type":"image"},{"UUID":"492:2255","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"value":{"UUID":"I492:2280;492:2255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-2155.66015625,"y":1634.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/I492_2280;492_2255.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_2280;492_2255.png","type":"image"},{"UUID":"492:2253","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"p","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1537.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"valueName":"p","type":"stringValue"},{"UUID":"492:2252","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"0","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1859.0,"y":1495.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"valueName":"0","type":"stringValue"},{"UUID":"492:2251","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"l","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1877.0,"y":1580.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"valueName":"l","type":"stringValue"},{"UUID":"492:2250","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"o","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1537.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"valueName":"o","type":"stringValue"},{"UUID":"492:2249","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"9","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1894.0,"y":1495.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"valueName":"9","type":"stringValue"},{"UUID":"492:2248","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"k","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1912.0,"y":1580.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"valueName":"k","type":"stringValue"},{"UUID":"492:2247","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"i","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1537.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"valueName":"i","type":"stringValue"},{"UUID":"492:2246","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"8","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1929.0,"y":1495.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"valueName":"8","type":"stringValue"},{"UUID":"492:2245","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"m","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1911.0,"y":1623.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"valueName":"m","type":"stringValue"},{"UUID":"492:2244","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"j","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1947.0,"y":1580.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"valueName":"j","type":"stringValue"},{"UUID":"492:2243","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"u","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1537.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"valueName":"u","type":"stringValue"},{"UUID":"492:2242","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"7","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1964.0,"y":1495.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"valueName":"7","type":"stringValue"},{"UUID":"492:2241","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"n","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1946.0,"y":1623.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"valueName":"n","type":"stringValue"},{"UUID":"492:2240","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"h","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1982.0,"y":1580.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"valueName":"h","type":"stringValue"},{"UUID":"492:2239","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"y","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1537.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"valueName":"y","type":"stringValue"},{"UUID":"492:2238","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"6","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1999.0,"y":1495.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"valueName":"6","type":"stringValue"},{"UUID":"492:2237","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"b","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1981.0,"y":1623.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"valueName":"b","type":"stringValue"},{"UUID":"492:2236","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"g","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2017.0,"y":1580.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"valueName":"g","type":"stringValue"},{"UUID":"492:2235","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"t","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1537.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"valueName":"t","type":"stringValue"},{"UUID":"492:2234","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2034.0,"y":1495.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"valueName":"5","type":"stringValue"},{"UUID":"492:2233","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"v","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2016.0,"y":1623.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"valueName":"v","type":"stringValue"},{"UUID":"492:2232","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"f","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2052.0,"y":1580.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"valueName":"f","type":"stringValue"},{"UUID":"492:2231","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"r","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1537.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"valueName":"r","type":"stringValue"},{"UUID":"492:2230","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"4","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2069.0,"y":1495.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"valueName":"4","type":"stringValue"},{"UUID":"492:2229","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"c","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2051.0,"y":1623.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"valueName":"c","type":"stringValue"},{"UUID":"492:2228","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"d","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2087.0,"y":1580.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"valueName":"d","type":"stringValue"},{"UUID":"492:2227","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"e","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1537.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"valueName":"e","type":"stringValue"},{"UUID":"492:2226","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"3","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2104.0,"y":1495.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"valueName":"3","type":"stringValue"},{"UUID":"492:2225","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"x","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2086.0,"y":1623.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"valueName":"x","type":"stringValue"},{"UUID":"492:2224","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"s","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2122.0,"y":1580.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"valueName":"s","type":"stringValue"},{"UUID":"492:2223","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"w","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1537.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"valueName":"w","type":"stringValue"},{"UUID":"492:2222","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"2","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2139.0,"y":1495.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"valueName":"2","type":"stringValue"},{"UUID":"492:2221","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"z","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2121.0,"y":1623.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"valueName":"z","type":"stringValue"},{"UUID":"492:2220","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"a","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2157.0,"y":1580.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"valueName":"a","type":"stringValue"},{"UUID":"492:2219","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"q","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1537.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"valueName":"q","type":"stringValue"},{"UUID":"492:2218","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"1","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"I492:2280;492:2218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-2174.0,"y":1495.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"valueName":"1","type":"stringValue"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:2281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 435","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-2087.0,"y":1330.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-1974.0,"y":1330.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 436","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-2030.0,"y":1330.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.0,"width":10.0,"x":-1922.0,"y":1330.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2284.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"492:2686","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:2686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"523:414","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":378.0,"z":32.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2858","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":395.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2859","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2859.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1536.0,"y":396.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2861","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":396.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2861.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2863","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2863.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2864","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2688","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":153.0,"x":-1677.0,"y":432.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Setup Profile"},{"UUID":"492:2702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1740.0,"y":733.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:2703","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1630.0,"y":740.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"492:2720","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and comditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":249.0,"x":-1738.0,"y":680.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and comditions"},{"UUID":"492:2793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":-1780.0,"y":789.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2794","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":-1781.0,"y":801.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2795","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":-1774.0,"y":805.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2796","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":805.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"492:2797","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":847.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"492:2798","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1757.0,"y":890.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"492:2799","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1721.0,"y":933.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"492:2800","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":805.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"492:2801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":847.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"492:2802","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1722.0,"y":890.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"492:2803","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1686.0,"y":933.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"492:2804","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":805.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"492:2805","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":847.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"492:2806","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1687.0,"y":890.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"492:2807","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1651.0,"y":933.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"492:2808","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":805.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"492:2809","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":847.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"492:2810","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1652.0,"y":890.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"492:2811","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1616.0,"y":933.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"492:2812","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":805.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"492:2813","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":847.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"492:2814","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1617.0,"y":890.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"492:2815","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1581.0,"y":933.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"492:2816","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":805.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"492:2817","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":847.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"492:2818","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1582.0,"y":890.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"492:2819","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1546.0,"y":933.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"492:2820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":805.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"492:2821","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":847.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"492:2822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1547.0,"y":890.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"492:2823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1511.0,"y":933.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"492:2824","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":805.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"492:2825","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":847.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"492:2826","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1512.0,"y":890.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"492:2827","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":805.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"492:2828","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":847.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"492:2829","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1477.0,"y":890.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"492:2830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":805.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"492:2831","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":847.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"492:2832","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-1755.6602783203125,"y":944.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2832.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2837","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1466.0,"y":943.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2838","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1460.0,"y":944.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2839","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1466.0,"y":943.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2839.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2840","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-1457.0,"y":948.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2840.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2843","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-1651.0,"y":977.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2843.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2845","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1511.0,"y":984.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"492:2846","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1724.0,"y":984.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"492:2847","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-1765.0,"y":981.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"492:2848","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-1682.0,"y":986.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2848.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":984.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":984.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2854.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2855","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1460.0,"y":994.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2855.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":-1691.0,"y":777.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"492:2704","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49041748046875,"width":16.4903564453125,"x":-1550.832275390625,"y":781.05810546875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2704.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2707","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1578.31591796875,"y":781.05810546875,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2708","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1578.31591796875,"y":781.05810546875,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2709","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.36773681640625,"width":16.4903564453125,"x":-1578.31591796875,"y":783.119384765625,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2709.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:2715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1523.348388671875,"y":781.05810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2716","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.49029541015625,"width":16.4903564453125,"x":-1523.348388671875,"y":781.05810546875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2716.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2718","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.9952392578125,"width":15.80322265625,"x":-1522.6612548828125,"y":783.119384765625,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2718.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:543","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":468.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:544","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":468.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_544.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:545","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":-1725.0,"y":475.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"532:546","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":479.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:547","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":515.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:548","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":515.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_548.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:549","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":45.0,"x":-1725.0,"y":522.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Email"},{"UUID":"532:550","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":526.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:551","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":563.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:552","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":563.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_552.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":119.0,"x":-1725.0,"y":570.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone number"},{"UUID":"532:554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":574.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":611.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":611.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_556.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":-1725.0,"y":618.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Address"},{"UUID":"532:558","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":622.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":659.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":659.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_560.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":-1725.0,"y":666.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"State"},{"UUID":"532:562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":670.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":708.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:564","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:565","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1733.0,"y":712.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_565.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:567","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1715.0,"y":707.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true},{"UUID":"492:2881","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:2881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":1778.0,"z":34.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":1795.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2929","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":1796.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2929.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2930","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1536.0,"y":1796.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2931","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":1796.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2931.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2933","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":1797.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2933.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2934","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":1795.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1504.0,"y":1880.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"492:2884","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":38.348876953125,"width":191.0,"x":-1695.0,"y":1846.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Setup Profile"},{"UUID":"532:675","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1909.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1909.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_676.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":-1725.0,"y":1916.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"532:678","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":1920.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:679","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1964.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:680","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1964.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_680.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:681","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":-1725.0,"y":1971.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"johndoe@gmail.com"},{"UUID":"532:682","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1975.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2020.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:684","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2020.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_684.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:686","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":2031.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"532:719","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"09037584957","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":110.0,"x":-1725.0,"y":2027.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"09037584957"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:687","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2076.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:688","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2076.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_688.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:689","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":155.0,"x":-1725.0,"y":2083.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"532:690","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":2087.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:691","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2132.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:692","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":2132.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_692.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:693","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":-1725.0,"y":2139.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"FCT"},{"UUID":"532:694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":2143.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":-1714.0,"y":2304.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:696","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":278.0,"x":-1739.0,"y":2237.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2942","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:697","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1631.0,"y":2245.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:698","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1551.0,"y":2305.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_698.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:701","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":2305.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":2305.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:703","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-1591.0,"y":2308.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_703.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:709","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":2305.0,"z":13.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:710","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":2305.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_710.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:712","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.913330078125,"width":23.0,"x":-1510.0,"y":2308.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_712.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":2181.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":2181.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:716","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1732.0,"y":2185.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_716.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:718","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1714.0,"y":2180.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true},{"UUID":"492:2942","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Location pop up","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:2942","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Location pop up","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:417","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1380.0,"y":378.0,"z":35.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2943","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1637.0,"y":225.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2943.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2944","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":499.9476318359375,"width":324.79815673828125,"x":-1099.144287109375,"y":689.407470703125,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2945","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-973.654052734375,"y":747.6292114257812,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2945.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50213623046875,"width":39.36944580078125,"x":-907.218017578125,"y":991.9074096679688,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2948.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2951","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.3695068359375,"x":-1099.144287109375,"y":689.407470703125,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2951.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2954","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-813.715576171875,"y":869.135498046875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2954.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.36944580078125,"x":-928.133056640625,"y":1148.85302734375,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2957.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:2960","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":429.0,"x":-1409.0,"y":378.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2961","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 144","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1691.0,"y":528.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2962","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":-1691.0,"y":528.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"492:2963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":281.634033203125,"x":-1679.856201171875,"y":549.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"492:2964","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":258.3333740234375,"x":-1668.0,"y":765.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:2965","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":142.8431396484375,"x":-1610.0,"y":774.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}],"type":"group"},{"UUID":"492:2973","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1155.0,"y":399.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1112.0,"y":400.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2974.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1136.0,"y":400.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:2976","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1135.125,"y":400.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2976.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"492:2978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1155.0,"y":401.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_2978.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2979","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1078.0,"y":399.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"492:2982","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:2982","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-980.0,"y":378.0,"z":11.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:2983","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-1268.0,"y":-25.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_2983.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":-600.1442260742188,"y":530.02783203125,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:2985","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-474.654052734375,"y":586.6214599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2985.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2988","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-408.218017578125,"y":824.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2988.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2991","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-600.1442260742188,"y":530.02783203125,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2991.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2994","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-314.715576171875,"y":704.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2994.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:2997","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":-429.133056640625,"y":976.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_2997.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3000","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":-560.7747192382812,"y":792.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3001","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":-560.7747192382812,"y":792.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3001.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3002","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":-543.5506591796875,"y":809.3046875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3002.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"492:3004","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-755.0,"y":395.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-678.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-712.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3004;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3004;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-735.125,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3004;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3004;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3004;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-755.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3004;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3004;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3005","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":686.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-685.0,"y":686.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3006.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":-671.0,"y":699.9998168945312,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3007.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:3009","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":689.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3009.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3010","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-955.0,"y":428.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3010.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3011","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-897.0,"y":689.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3011.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3012","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-945.0,"y":699.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3012.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3013","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-886.0,"y":700.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3013.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3016","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-919.0,"y":808.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3017","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-942.0,"y":442.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3017.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3019","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":-777.0,"y":808.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:633","constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3020","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-904.0,"y":849.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3021","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":-771.0,"y":849.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3022","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.2996826171875,"x":-896.0,"y":824.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3022.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3028","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.2996826171875,"x":-752.0,"y":824.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3028.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3034","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-955.0,"y":508.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3035","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.06201171875,"width":19.05999755859375,"x":-945.0,"y":523.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3035.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3037","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-849.0,"y":934.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3038","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-955.0,"y":476.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"492:3045","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"!2, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":159.0,"x":-912.0,"y":521.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"!2, Jabi area, Abuja"}]},"isVisible":true},{"UUID":"492:3122","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:3122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-180.0,"y":-320.0,"z":9.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-468.0,"y":-723.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3123.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":199.85577392578125,"y":-167.97216796875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:3125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":325.345947265625,"y":-111.3785400390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3125.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36944580078125,"x":391.781982421875,"y":126.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3128.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.36946105957031,"x":199.85577392578125,"y":-167.97216796875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3131.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36945724487305,"width":39.36944580078125,"x":485.284423828125,"y":6.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3134.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3137","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":370.866943359375,"y":278.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3137.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3140","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":239.22528076171875,"y":94.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3141","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.211822509765625,"x":239.22528076171875,"y":94.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3141.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3142","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":256.4493408203125,"y":111.30470275878906,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3142.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"492:3144","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":45.0,"y":-303.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":122.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":88.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3144;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3144;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":64.875,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3144;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3144;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3144;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":45.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3144;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3144;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3145","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":-12.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3146","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":-12.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3146.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3147","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":129.0,"y":1.9997940063476562,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3147.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:3149","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":-9.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3149.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3150","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":-270.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3150.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3151","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-97.0,"y":-9.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3151.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-145.0,"y":1.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3152.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3153","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-86.0,"y":2.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3153.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3156","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-119.0,"y":110.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3157","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-142.0,"y":-256.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3157.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":23.0,"y":110.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-104.0,"y":151.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":29.0,"y":151.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299659729003906,"x":-96.0,"y":126.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3162.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299659729003906,"x":48.0,"y":126.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3168.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3174","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-155.0,"y":-190.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:612","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3175","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.05999755859375,"x":-145.0,"y":-175.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3175.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":-119.0,"y":-178.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"492:3177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-49.0,"y":236.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-155.0,"y":-222.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"479:542","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":-204.0,"y":-320.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"479:543","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":-154.0,"y":-248.0,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_543.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:544","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":-73.0,"y":-234.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:1013","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"479:545","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":-154.0,"y":-131.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:559","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"479:546","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":-154.0,"y":-91.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:854","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"479:547","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notifications","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":102.0,"x":-154.0,"y":-51.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Notifications"},{"UUID":"479:548","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":-154.0,"y":29.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:870","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"479:549","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":104.0,"x":-154.0,"y":-11.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:442","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi delivery"},{"UUID":"479:550","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":-154.0,"y":69.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:890","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"479:551","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":-154.0,"y":109.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:306","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"479:552","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":-71.0,"y":-209.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"479:553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":-166.0,"y":-294.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"479:554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":-151.0,"y":200.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"479:555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":-131.0,"y":212.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"479:556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":-130.0,"y":233.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"479:557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.087284088134766,"x":19.0,"y":222.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/479_557.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"479:558","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":-148.0,"y":267.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"492:3248","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:3248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:3122","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-180.0,"y":378.0,"z":10.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":-468.0,"y":-25.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":485.96673583984375,"width":324.798095703125,"x":199.85577392578125,"y":530.02783203125,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:3251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":325.345947265625,"y":586.6214599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3251.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":391.781982421875,"y":824.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36946105957031,"x":199.85577392578125,"y":530.02783203125,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":485.284423828125,"y":704.7298583984375,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.36944580078125,"x":370.866943359375,"y":976.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3263.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":239.22528076171875,"y":792.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.2117919921875,"width":49.211822509765625,"x":239.22528076171875,"y":792.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3267.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.7635498046875,"x":256.4493408203125,"y":809.3046875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3268.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"492:3270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":45.0,"y":395.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":122.0,"y":395.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":88.0,"y":396.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3270;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3270;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":64.875,"y":396.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3270;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3270;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3270;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":45.0,"y":397.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3270;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3270;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":686.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"492:3272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":115.0,"y":686.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":129.0,"y":699.9998168945312,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3273.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"492:3275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":689.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-155.0,"y":428.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-97.0,"y":689.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":-145.0,"y":699.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":-86.0,"y":700.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":-119.0,"y":808.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":-142.0,"y":442.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":23.0,"y":808.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"492:3286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":-104.0,"y":849.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":29.0,"y":849.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.299659729003906,"x":-96.0,"y":824.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.8077392578125,"width":46.299659729003906,"x":48.0,"y":824.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3294.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":-155.0,"y":508.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.06201171875,"width":19.05999755859375,"x":-145.0,"y":523.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3301.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":-119.0,"y":520.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"492:3303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":-49.0,"y":934.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":-155.0,"y":476.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"492:3305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":-440.0,"y":378.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"492:3306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":-391.0,"y":450.0,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3306.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":-310.0,"y":464.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"492:3308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":-391.0,"y":567.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"492:3309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":-391.0,"y":607.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"492:3310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notifications","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":102.0,"x":-391.0,"y":647.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Notifications"},{"UUID":"492:3311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":-391.0,"y":727.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"492:3312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":104.0,"x":-391.0,"y":687.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi delivery"},{"UUID":"492:3313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":-391.0,"y":767.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"492:3314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":-391.0,"y":807.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"492:3315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":-308.0,"y":489.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"492:3316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":-403.0,"y":404.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"492:3317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":-388.0,"y":898.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":-368.0,"y":910.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"492:3319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":-367.0,"y":931.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"492:3320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":-218.0,"y":920.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3320.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":-385.0,"y":965.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"492:3331","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:3331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":620.0,"y":1082.0,"z":23.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":239.0,"y":858.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3332.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":703.0,"y":1521.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":845.0,"y":1099.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":922.0,"y":1099.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":888.0,"y":1100.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3365;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3365;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":864.875,"y":1100.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3365;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3365;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3365;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":845.0,"y":1101.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3365;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3365;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":647.0,"y":1132.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3366.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"496:403","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 159","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":631.0,"y":1383.0,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"492:3367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":631.0,"y":1383.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"438:117","parameters":null,"overrideValues":[{"UUID":"443:118","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":644.0,"y":1547.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},"valueName":"Car model: Honda Civic","type":"stringValue"},{"UUID":"443:119","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Car colour: Grey","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":645.0,"y":1567.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"},"valueName":"Car colour: Grey","type":"stringValue"},{"UUID":"441:111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;441:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47802734375,"width":9.92523193359375,"x":719.0374145507812,"y":1500.8004150390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3367;441_111.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3367;441_111.png","type":"image"},{"UUID":"441:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;441:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.1494140625,"width":24.97125244140625,"x":906.9883422851562,"y":1506.716552734375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3367;441_116.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3367;441_116.png","type":"image"},{"UUID":"443:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Ellipse 438","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I492:3367;443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":897.0,"y":1500.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I492_3367;443_117.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I492_3367;443_117.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"492:3368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":269.0,"x":644.0,"y":1624.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":668.0,"y":1638.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"492:3370","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":799.0,"y":1624.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:932","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"492:3371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":840.0,"y":1636.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"492:3372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5 MINs","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":68.0,"x":765.0,"y":1431.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5 MINs "},{"UUID":"492:3373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"GXM 507 AJ","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":84.0,"x":712.0,"y":1513.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"GXM 507 AJ "},{"UUID":"492:3374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your rider will be at your location in","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":286.0,"x":655.0,"y":1407.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your rider will be at your location in "},{"UUID":"492:3375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tunde Kareem","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":91.0,"x":712.0,"y":1483.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Tunde Kareem"},{"UUID":"492:3376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5.0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":735.0,"y":1500.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5.0"},{"UUID":"492:3397","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":64.0,"x":644.0,"y":1476.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/492_3397.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"492:3415","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"492:3415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:3331","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":620.0,"y":381.0,"z":24.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"492:3416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2894287109375,"x":239.0,"y":157.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/492_3416.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"492:3429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":703.0,"y":820.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"492:3430","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":820.0,"y":820.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"492:3444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":751.0,"y":937.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"492:3450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":647.0,"y":431.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/492_3450.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"500:416","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"500:416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"501:519","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1818.0,"y":381.0,"z":17.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"500:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2043.0,"y":398.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2120.0,"y":398.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2086.0,"y":399.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I500_417;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I500_417;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2062.875,"y":399.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I500_417;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I500_417;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I500:417;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2043.0,"y":400.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I500_417;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I500_417;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"500:418","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":1844.0,"y":502.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"500:419","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":1844.0,"y":542.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"500:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":1954.0,"y":783.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"500:421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":1843.0,"y":431.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_421.png","prototypeNodeUUID":"479:559","type":"image"},{"UUID":"500:422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":1923.0,"y":417.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"500:423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":1844.0,"y":529.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:424","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":1844.0,"y":594.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:425","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":1844.0,"y":659.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":2043.0,"y":659.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"500:427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":1843.0,"y":706.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"500:428","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":1967.0,"y":718.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"500:429","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2130.0,"y":563.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_429.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:432","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":1844.0,"y":481.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"500:433","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":1842.0,"y":539.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"500:434","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":1842.0,"y":604.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"500:435","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":2043.0,"y":605.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"500:450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":1818.0,"y":785.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":1818.0,"y":785.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"500:452","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":1824.0,"y":801.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1824.0,"y":801.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"500:454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1824.0,"y":843.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"500:455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1841.0,"y":886.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"500:456","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1877.0,"y":929.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"500:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1859.0,"y":801.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"500:458","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1859.0,"y":843.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"500:459","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1876.0,"y":886.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"500:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1912.0,"y":929.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"500:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1894.0,"y":801.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"500:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1894.0,"y":843.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"500:463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1911.0,"y":886.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"500:464","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1947.0,"y":929.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"500:465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1929.0,"y":801.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"500:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1929.0,"y":843.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"500:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1946.0,"y":886.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"500:468","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1982.0,"y":929.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"500:469","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1964.0,"y":801.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"500:470","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1964.0,"y":843.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"500:471","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1981.0,"y":886.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"500:472","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2017.0,"y":929.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"500:473","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1999.0,"y":801.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"500:474","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":1999.0,"y":843.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"500:475","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2016.0,"y":886.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"500:476","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2052.0,"y":929.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"500:477","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2034.0,"y":801.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"500:478","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2034.0,"y":843.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"500:479","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2051.0,"y":886.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"500:480","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2087.0,"y":929.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"500:481","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2069.0,"y":801.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"500:482","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2069.0,"y":843.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"500:483","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2086.0,"y":886.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"500:484","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2104.0,"y":801.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"500:485","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2104.0,"y":843.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"500:486","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2121.0,"y":886.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"500:487","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2139.0,"y":801.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"500:488","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2139.0,"y":843.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"500:489","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":1842.3397216796875,"y":940.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_489.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":2132.0,"y":939.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:495","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":2138.0,"y":940.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"500:496","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":2132.0,"y":939.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_496.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:497","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":2141.0,"y":944.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_497.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"500:500","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":1947.0,"y":973.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_500.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:502","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2087.0,"y":980.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"500:503","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":1874.0,"y":980.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"500:504","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":1833.0,"y":977.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"500:505","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":1916.0,"y":982.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/500_505.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:510","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2131.0,"y":980.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"500:511","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2131.0,"y":980.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_511.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"500:512","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":2138.0,"y":990.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/500_512.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"500:515","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":1842.0,"y":505.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"500:516","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3458 9853 0976 2354","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":172.0,"x":1843.0,"y":569.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3458 9853 0976 2354"},{"UUID":"501:517","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"13/05","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":44.0,"x":1843.0,"y":636.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"13/05"},{"UUID":"501:518","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"679","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":2043.0,"y":636.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"679"}]},"isVisible":true},{"UUID":"501:519","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"501:519","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1818.0,"y":1082.0,"z":16.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"501:520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2043.0,"y":1099.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2120.0,"y":1099.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2086.0,"y":1100.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I501_520;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I501_520;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2062.875,"y":1100.75,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I501_520;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I501_520;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I501:520;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2043.0,"y":1101.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I501_520;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I501_520;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"501:521","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":1844.0,"y":1397.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"501:522","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":1844.0,"y":1437.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"501:523","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":1954.0,"y":1678.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"501:524","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0921630859375,"x":1843.0,"y":1132.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/501_524.png","prototypeNodeUUID":"479:559","type":"image"},{"UUID":"501:525","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":1923.0,"y":1118.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"501:526","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":1844.0,"y":1424.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:527","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":1844.0,"y":1489.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:528","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":1844.0,"y":1554.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:529","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":2043.0,"y":1554.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"501:530","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":1843.0,"y":1601.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"479:559","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"501:531","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":1967.0,"y":1613.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"501:532","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2130.0,"y":1458.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/501_532.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"501:535","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":1844.0,"y":1376.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"501:536","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":1842.0,"y":1434.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"501:537","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":1842.0,"y":1499.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"501:538","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":2043.0,"y":1500.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"501:539","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 158","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.25,"width":245.0,"x":1875.0,"y":1179.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/501_539.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"501:553","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":1842.0,"y":1400.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"501:554","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3458 9853 0976 2354","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":172.0,"x":1843.0,"y":1464.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3458 9853 0976 2354"},{"UUID":"501:555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"13/05","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":44.0,"x":1843.0,"y":1531.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"13/05"},{"UUID":"501:556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"679","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":2043.0,"y":1531.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"679"}]},"isVisible":true},{"UUID":"523:414","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"523:414","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2881","child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":1076.0,"z":33.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"523:415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":1093.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"523:416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":1094.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/523_416.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"523:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":-1536.0,"y":1094.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"523:418","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":1094.75,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/523_418.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"523:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":1095.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/523_420.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"523:421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":1093.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"523:422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":153.0,"x":-1677.0,"y":1130.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Setup Profile"},{"UUID":"523:437","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1636.0,"y":1420.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:568","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1740.0,"y":1433.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:569","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1630.0,"y":1440.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:571","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":1505.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"532:572","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1774.0,"y":1547.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"532:573","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1757.0,"y":1590.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"532:574","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1721.0,"y":1633.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"532:575","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":1505.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"532:576","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1739.0,"y":1547.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"532:577","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1722.0,"y":1590.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"532:578","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1686.0,"y":1633.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"532:579","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":1505.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"532:580","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1704.0,"y":1547.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"532:581","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1687.0,"y":1590.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"532:582","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1651.0,"y":1633.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"532:583","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":1505.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"532:584","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1669.0,"y":1547.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"532:585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1652.0,"y":1590.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"532:586","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1616.0,"y":1633.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"532:587","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":1505.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"532:588","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1634.0,"y":1547.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"532:589","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1617.0,"y":1590.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"532:590","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1581.0,"y":1633.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"532:591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":1505.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"532:592","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1599.0,"y":1547.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"532:593","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1582.0,"y":1590.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"532:594","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1546.0,"y":1633.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"532:595","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":1505.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"532:596","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1564.0,"y":1547.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"532:597","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1547.0,"y":1590.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"532:598","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1511.0,"y":1633.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"532:599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":1505.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"532:600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1529.0,"y":1547.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"532:601","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1512.0,"y":1590.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"532:602","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":1505.0,"z":36.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"532:603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1494.0,"y":1547.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"532:604","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1477.0,"y":1590.0,"z":38.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"532:605","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":1505.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"532:606","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":-1459.0,"y":1547.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"532:607","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":-1755.6602783203125,"y":1644.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_607.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:612","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":-1466.0,"y":1643.0,"z":42.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"532:613","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":-1460.0,"y":1644.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:614","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":-1466.0,"y":1643.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_614.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:615","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0,"width":6.0,"x":-1457.0,"y":1648.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_615.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:618","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":-1651.0,"y":1677.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_618.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1511.0,"y":1684.0,"z":44.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"532:621","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":-1724.0,"y":1684.0,"z":45.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"532:622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":-1765.0,"y":1681.0,"z":46.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"532:623","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":-1682.0,"y":1686.0,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_623.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":1684.0,"z":48.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"532:629","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":-1467.0,"y":1684.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_629.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:630","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":-1460.0,"y":1694.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_630.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":-1691.0,"y":1477.0,"z":49.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:634","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1550.832275390625,"y":1481.05810546875,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_634.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:637","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1578.31591796875,"y":1481.05810546875,"z":51.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:638","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1578.31591796875,"y":1481.05810546875,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:639","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.3677978515625,"width":16.4903564453125,"x":-1578.31591796875,"y":1483.119384765625,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_639.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1523.348388671875,"y":1481.05810546875,"z":52.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.4903564453125,"width":16.4903564453125,"x":-1523.348388671875,"y":1481.05810546875,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_646.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:648","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.9952392578125,"width":15.80322265625,"x":-1522.6612548828125,"y":1483.119384765625,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_648.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:650","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1168.0,"z":53.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:651","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":1168.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_651.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":-1725.0,"y":1175.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"John Doe"},{"UUID":"532:653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":1179.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1215.0,"z":54.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1215.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_655.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":-1725.0,"y":1222.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"johndoe@gmail.com"},{"UUID":"532:657","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1226.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1263.0,"z":55.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:659","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1263.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_659.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:660","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"09037584957","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":110.0,"x":-1725.0,"y":1270.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"09037584957"},{"UUID":"532:661","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1274.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1311.0,"z":56.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:663","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1311.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_663.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:664","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":155.0,"x":-1725.0,"y":1318.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"532:665","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1322.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1359.0,"z":57.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":1359.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_667.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:668","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":-1725.0,"y":1366.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"FCT"},{"UUID":"532:669","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":1370.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:670","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":1408.0,"z":58.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:671","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1737.0,"y":1408.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:672","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1733.0,"y":1412.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_672.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1715.0,"y":1407.0,"z":59.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true},{"UUID":"532:437","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"532:437","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-1780.0,"y":-320.0,"z":36.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"532:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":-1555.0,"y":-303.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":-1478.0,"y":-303.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":-1512.0,"y":-302.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_438;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_438;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":-1535.125,"y":-301.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_438;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_438;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:438;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":-1555.0,"y":-301.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_438;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_438;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"532:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Set up profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":201.0,"x":-1701.0,"y":-261.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Set up profile"},{"UUID":"532:440","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":-192.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:441","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.0,"width":277.0,"x":-1739.0,"y":-192.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_441.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:442","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":-1725.0,"y":-185.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"532:443","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1521.0,"y":-181.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-137.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-137.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_445.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:446","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":45.0,"x":-1725.0,"y":-130.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Email"},{"UUID":"532:447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":-126.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:448","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-81.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:449","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-81.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_449.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:450","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":119.0,"x":-1725.0,"y":-74.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone number"},{"UUID":"532:451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":-70.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:452","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-25.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":-25.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_453.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:454","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":-1725.0,"y":-18.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Address"},{"UUID":"532:455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":-14.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:456","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":31.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":"492:2686","constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":-1739.0,"y":31.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_457.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:458","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":-1725.0,"y":38.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"State"},{"UUID":"532:459","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":-1520.0,"y":42.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":-1714.0,"y":203.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":278.0,"x":-1739.0,"y":136.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":-1631.0,"y":144.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1551.0,"y":204.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_463.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":204.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1591.0,"y":204.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:468","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":-1591.0,"y":207.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_468.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:474","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":204.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:475","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-1511.0,"y":204.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_475.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:477","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":-1510.0,"y":207.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_477.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:479","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":80.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:480","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-1736.0,"y":80.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:481","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":-1732.0,"y":84.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_481.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:483","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":-1714.0,"y":79.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true}],"type":"page"},{"UUID":"48:113","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"STYLE GUIDE","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"126:268","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Form Controls","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"126:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Form Controls","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1042.0,"width":712.0,"x":-64.0,"y":31.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Header","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":96.0,"width":552.0,"x":16.0,"y":111.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9803921580314636,"g":0.9803921580314636,"b":0.9803921580314636},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":552.0,"x":16.0,"y":139.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":34.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Form controls"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":280.0,"x":328.0,"y":708.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:271","overrideProperties":[{"UUID":"126:2912","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2912","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2911","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Can’t attach"},"type":"stringValue"},{"UUID":"126:2920","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape","child":null,"constraints":null,"value":{"UUID":"126:2920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1154.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2920.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2883","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2882","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2882","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Another ringtone"},"type":"stringValue"},{"UUID":"126:2891","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape2","child":null,"constraints":null,"value":{"UUID":"126:2891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1058.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2891.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2854","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2853","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"And some more..."},"type":"stringValue"},{"UUID":"126:2862","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape3","child":null,"constraints":null,"value":{"UUID":"126:2862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1106.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2862.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2823","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2822","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ganymede"},"type":"stringValue"},{"UUID":"126:2832","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape4","child":null,"constraints":null,"value":{"UUID":"126:2832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":818.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2832.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2793","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2792","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2792","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},"type":"stringValue"},{"UUID":"126:2801","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape5","child":null,"constraints":null,"value":{"UUID":"126:2801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":722.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2801.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2764","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2764","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2763","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2763","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Dione"},"type":"stringValue"},{"UUID":"126:2772","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape6","child":null,"constraints":null,"value":{"UUID":"126:2772","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1010.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2772.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2735","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2735","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2734","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2734","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Phobos"},"type":"stringValue"},{"UUID":"126:2743","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape7","child":null,"constraints":null,"value":{"UUID":"126:2743","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":962.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2743.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2706","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2706","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2705","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2705","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Oberon"},"type":"stringValue"},{"UUID":"126:2714","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape8","child":null,"constraints":null,"value":{"UUID":"126:2714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":914.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2714.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2677","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2676","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Luna"},"type":"stringValue"},{"UUID":"126:2685","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape9","child":null,"constraints":null,"value":{"UUID":"126:2685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":866.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2685.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2648","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2647","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Calisto"},"type":"stringValue"},{"UUID":"126:2656","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape10","child":null,"constraints":null,"value":{"UUID":"126:2656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":770.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2656.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:2521","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"𝍖 Patterns/Radio/Simple","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":248.0,"x":336.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":756.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2644","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":756.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":756.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":760.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2660","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":760.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2660.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2656","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":770.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2656.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Calisto"},{"UUID":"126:2648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":770.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2662","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":852.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2673","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":852.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2674","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":852.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2683","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":856.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2689","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":856.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2689.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2685","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":866.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2685.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2676","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Luna"},{"UUID":"126:2677","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":866.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2691","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":900.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2702","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":900.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2703","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":900.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2712","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":904.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2718","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":904.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2718.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2714","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":914.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2714.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2705","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Oberon"},{"UUID":"126:2706","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":914.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2720","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":948.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2731","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":948.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2732","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":948.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2741","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":952.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2747","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":952.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2747.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2743","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":962.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2743.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2734","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Phobos"},{"UUID":"126:2735","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":962.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2749","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":996.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2760","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":996.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2761","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":996.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2770","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1000.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2776","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1000.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2776.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2772","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1010.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2772.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2763","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Dione"},{"UUID":"126:2764","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1010.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2778","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Single Off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":708.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2789","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2790","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":708.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2799","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":712.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2805","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":712.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2805.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2801","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":722.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2801.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2792","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},{"UUID":"126:2793","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":722.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2807","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Single On","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":804.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2819","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":804.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":804.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio on","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":808.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2837","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":808.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2837.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":818.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2832.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ganymede"},{"UUID":"126:2823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":818.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2839","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1092.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2850","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1092.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2851","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1092.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1096.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2866","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1096.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2866.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1106.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2862.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"And some more..."},{"UUID":"126:2854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1106.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2868","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1044.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2879","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1044.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1044.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2889","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1048.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2895","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1048.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2895.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1058.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2891.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2882","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Another ringtone"},{"UUID":"126:2883","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1058.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2897","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Radio/Off Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1140.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2908","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1140.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2909","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":336.0,"y":1140.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2918","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"radio off","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1144.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2924","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":344.0,"y":1144.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2924.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":354.0,"y":1154.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2920.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Can’t attach"},{"UUID":"126:2912","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":408.0,"y":1154.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"03","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":280.0,"x":-8.0,"y":704.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:273","overrideProperties":[{"UUID":"126:2181","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2180","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Trash"},"type":"stringValue"},{"UUID":"126:2189","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape","child":null,"constraints":null,"value":{"UUID":"126:2189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1151.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2189.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2152","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2151","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2151","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home"},"type":"stringValue"},{"UUID":"126:2160","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape2","child":null,"constraints":null,"value":{"UUID":"126:2160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1055.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2160.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2123","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2122","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Diary"},"type":"stringValue"},{"UUID":"126:2131","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape3","child":null,"constraints":null,"value":{"UUID":"126:2131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1103.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2131.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2094","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2094","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2093","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2093","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Social"},"type":"stringValue"},{"UUID":"126:2102","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape4","child":null,"constraints":null,"value":{"UUID":"126:2102","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":815.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2102.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2065","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2065","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2064","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2064","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Spam"},"type":"stringValue"},{"UUID":"126:2073","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape5","child":null,"constraints":null,"value":{"UUID":"126:2073","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":959.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2073.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2036","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2036","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2035","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2035","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},"type":"stringValue"},{"UUID":"126:2044","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape6","child":null,"constraints":null,"value":{"UUID":"126:2044","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":719.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2044.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:2007","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:2006","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue7","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:2006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Work"},"type":"stringValue"},{"UUID":"126:2015","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape7","child":null,"constraints":null,"value":{"UUID":"126:2015","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1007.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2015.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1978","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:1977","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue8","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Promotions"},"type":"stringValue"},{"UUID":"126:1986","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape8","child":null,"constraints":null,"value":{"UUID":"126:1986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":911.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1986.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1949","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1949","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:1948","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Updates"},"type":"stringValue"},{"UUID":"126:1957","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape9","child":null,"constraints":null,"value":{"UUID":"126:1957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":863.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1957.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1920","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSecondary10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"},"type":"stringValue"},{"UUID":"126:1919","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrValue10","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1919","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Forums"},"type":"stringValue"},{"UUID":"126:1928","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShape10","child":null,"constraints":null,"value":{"UUID":"126:1928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":767.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1928.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1794","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"𝍖 Patterns/Check/Simple","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":288.0,"width":248.0,"x":0.0,"y":704.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1905","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":752.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1916","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":752.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1917","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":752.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1926","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":756.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1932","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":756.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1932.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1928","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":767.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1928.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1919","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Forums"},{"UUID":"126:1920","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary10","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":766.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1934","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single True","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":848.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1945","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":848.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1946","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":848.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1955","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked filled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":852.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1961","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":852.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1961.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1957","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":863.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1957.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1948","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Updates"},{"UUID":"126:1949","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary9","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":862.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1963","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":896.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1974","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":896.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1975","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":896.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1984","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":900.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1990","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":900.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1990.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1986","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":911.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_1986.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1977","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Promotions"},{"UUID":"126:1978","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary8","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":910.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1992","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":992.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2003","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":992.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2004","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":992.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2013","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":996.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2019","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":996.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2019.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2015","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1007.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2015.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2006","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Work"},{"UUID":"126:2007","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary7","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1006.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2021","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":704.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2032","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":704.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2033","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":704.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2042","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":708.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2048","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":708.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2048.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2044","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":719.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2044.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2035","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"None"},{"UUID":"126:2036","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":718.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2050","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single False","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":944.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2061","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":944.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2062","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":944.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2071","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":948.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2077","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":948.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2077.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2073","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":959.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2073.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2064","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Spam"},{"UUID":"126:2065","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":958.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2079","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/True Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":800.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2090","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":800.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2091","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":800.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2100","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked filled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":804.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2106","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":804.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2106.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2102","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":815.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2102.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2093","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Social"},{"UUID":"126:2094","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":814.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/False Single line","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1088.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1088.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1088.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1092.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2135","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1092.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2135.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1103.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2131.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Diary"},{"UUID":"126:2123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1102.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2137","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single False","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1040.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2148","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1040.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2149","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1040.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1044.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2164","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1044.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2164.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1055.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2160.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2151","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home"},{"UUID":"126:2152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1054.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2166","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Check/Single False","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1136.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:2177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Selector/_single","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1136.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:2178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":248.0,"x":0.0,"y":1136.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:2187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"checked empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1140.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:2193","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":8.0,"y":1140.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_2193.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:2189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shape","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":18.0,"x":19.0,"y":1151.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/126_2189.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:2180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Value","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Trash"},{"UUID":"126:2181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":72.0,"y":1150.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"// Value"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"02","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":336.0,"width":280.0,"x":328.0,"y":312.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:275","overrideProperties":[{"UUID":"126:1733","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1733","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":330.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1733.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1721","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1721","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":330.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1721.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1695","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":320.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1694","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":320.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"John Smith"},"type":"stringValue"},{"UUID":"126:1715","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1715.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1712","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1712","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":328.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1712.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1666","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off2","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1666","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":386.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1666.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1654","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector4","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":386.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1654.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1628","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter2","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":376.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1627","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":376.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Michael Norton"},"type":"stringValue"},{"UUID":"126:1648","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector5","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":388.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1648.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1645","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":384.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1645.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1599","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off3","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":442.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1599.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1587","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector7","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1587","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1587.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1561","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter3","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":432.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1560","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":432.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Harry Stapleton"},"type":"stringValue"},{"UUID":"126:1581","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector8","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1581","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":444.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1581.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1578","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector9","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1578","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":440.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1578.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1532","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off4","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1532","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":498.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1532.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1520","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector10","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":498.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1520.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1494","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter4","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":488.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1493","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1493","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":488.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Mary Green"},"type":"stringValue"},{"UUID":"126:1514","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector11","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":500.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1514.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1511","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector12","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1511","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":496.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1511.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1465","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off5","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":554.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1465.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1453","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector13","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":554.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1453.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1427","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter5","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":544.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1426","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel5","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":544.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Dmitry Novitsky"},"type":"stringValue"},{"UUID":"126:1447","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector14","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":556.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1447.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1444","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector15","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":552.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1444.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1398","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr-knob-indicator-Off6","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1398","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-knob-indicator-Off6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":528.0,"y":610.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1398.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1386","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector16","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1386","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":610.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1386.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1360","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCounter6","child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":600.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},"type":"stringValue"},{"UUID":"126:1359","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel6","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":600.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Add account"},"type":"stringValue"},{"UUID":"126:1380","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector17","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1380","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":365.0,"y":613.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1380.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1377","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector18","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":608.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/126_1377.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1667","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":312.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1689","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":312.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1690","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":312.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1691","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":366.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1710","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":328.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1710.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1713","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":320.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1717","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":320.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1717.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1715","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1715.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1694","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":320.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"John Smith"},{"UUID":"126:1695","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":320.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1719","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":328.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1723","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":328.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1723.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1721","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":330.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1721.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1725","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":328.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1730","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":328.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1730.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":368.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1622","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":368.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1623","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":368.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1624","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":422.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1643","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":384.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1643.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":376.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1650","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":376.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1650.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":388.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1648.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1627","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":376.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Michael Norton"},{"UUID":"126:1628","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":376.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":384.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1656","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":384.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1656.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":386.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1654.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1658","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":384.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1663","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":384.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1663.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1533","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":424.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1555","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":424.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1556","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":424.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1557","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":478.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1576","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":440.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1576.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1579","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":432.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1583","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":432.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1583.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1581","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":444.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1581.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1560","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":432.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Harry Stapleton"},{"UUID":"126:1561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":432.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1585","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":440.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1589","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":440.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1589.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1587","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1587.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1591","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":440.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1596","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":440.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1596.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":480.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1488","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1489","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1490","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":534.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1509","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":496.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1509.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1512","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":488.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1516","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":488.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1516.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":500.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1514.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1493","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":488.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Mary Green"},{"UUID":"126:1494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":488.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1518","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":496.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1522","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":496.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1522.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":498.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1520.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1524","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":496.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1529","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":496.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1529.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1399","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":536.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":536.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":536.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":590.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1442","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":552.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1442.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1445","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Avatar","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":544.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1449","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":544.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1449.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1447","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":364.0,"y":556.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1447.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":544.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Dmitry Novitsky"},{"UUID":"126:1427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter5","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":544.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1451","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":552.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1455","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":552.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1455.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1453","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":554.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1453.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":552.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1462","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":552.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1462.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":592.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1354","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Default/_single-iconized","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":592.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":248.0,"x":336.0,"y":592.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"126:1356","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-divider6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":176.0,"x":408.0,"y":646.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":true,"fixedHeight":true,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"126:1375","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon (Left)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":360.0,"y":608.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1375.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1378","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon Add","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":600.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1382","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":352.0,"y":600.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1382.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1380","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":365.0,"y":613.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1380.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":160.0,"x":408.0,"y":600.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Add account"},{"UUID":"126:1360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Counter6","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":528.0,"y":600.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"16"},{"UUID":"126:1384","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":608.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1388","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":544.0,"y":608.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1388.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1386","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":20.0,"x":546.0,"y":610.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1386.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1390","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Switch","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":608.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1395","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Switch/_switch","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":40.0,"x":528.0,"y":608.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1395.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"01","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":304.0,"width":280.0,"x":-8.0,"y":311.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:282","overrideProperties":[{"UUID":"126:1326","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":329.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Superdesigner|"},"type":"stringValue"},{"UUID":"126:1325","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":312.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Username"},"type":"stringValue"},{"UUID":"126:1315","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":409.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"e.g. john@gmail.com"},"type":"stringValue"},{"UUID":"126:1314","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption2","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":392.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"E-mail"},"type":"stringValue"},{"UUID":"126:1304","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":569.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+7 (· · · ) · · · · · · ·"},"type":"stringValue"},{"UUID":"126:1303","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption3","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":552.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Phone number"},"type":"stringValue"},{"UUID":"126:1293","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrText Data4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":489.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"At least 8 symbols..."},"type":"stringValue"},{"UUID":"126:1292","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel Caption4","child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"value":{"UUID":"126:1292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":472.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Password"},"type":"stringValue"}],"children":[{"UUID":"126:1316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":312.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Username"},{"UUID":"126:1326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":329.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Superdesigner|"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border2","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":399.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":392.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"E-mail"},{"UUID":"126:1315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":409.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"e.g. john@gmail.com"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border3","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":559.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":552.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Phone number"},{"UUID":"126:1304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":569.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+7 (· · · ) · · · · · · ·"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/Text Only | No icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:1289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Outlined/_labeled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1dp • Border4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1291","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2dp • Border4","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":232.0,"x":16.0,"y":479.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"126:1292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label Caption4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":220.0,"x":28.0,"y":472.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":4.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Password"},{"UUID":"126:1293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Text Data4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":208.0,"x":28.0,"y":489.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"At least 8 symbols..."}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true},{"UUID":"126:287","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Buttons","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"126:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Buttons","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":824.0,"width":504.0,"x":-648.0,"y":31.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Header","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":96.0,"width":344.0,"x":-568.0,"y":111.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9803921580314636,"g":0.9803921580314636,"b":0.9803921580314636},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":344.0,"x":-568.0,"y":139.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":34.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Buttons"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":719.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:290","overrideProperties":[{"UUID":"126:1276","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-272.0,"y":739.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1276.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"126:1269","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":731.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"},"type":"stringValue"}],"children":[{"UUID":"126:1267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Container/_icon-right","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":719.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":719.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":731.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"},{"UUID":"126:1274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Right)","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-304.0,"y":719.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":true},"children":[{"UUID":"126:1278","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-304.0,"y":719.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-272.0,"y":739.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1276.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":623.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:292","overrideProperties":[{"UUID":"126:1254","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrLabel","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:1254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":635.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"},"type":"stringValue"},{"UUID":"126:1260","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-536.0,"y":643.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1260.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Container/_icon-left","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":623.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":344.0,"x":-568.0,"y":623.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon (Left)","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-568.0,"y":623.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":true},"children":[{"UUID":"126:1262","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":80.0,"x":-568.0,"y":623.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1262.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":16.0,"width":16.0,"x":-536.0,"y":643.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1260.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"126:1254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Label","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":344.0,"x":-568.0,"y":635.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Container Button"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":519.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:294","overrideProperties":[{"UUID":"126:1244","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1244.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1246","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1246.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1244.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:296","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":519.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:296","overrideProperties":[{"UUID":"126:1232","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1232.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9058823585510254,"g":0.2980392277240753,"b":0.23529411852359772},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1234","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1232.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:298","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":519.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:298","overrideProperties":[{"UUID":"126:1220","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1220.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1222","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1220.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"09","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":519.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:300","overrideProperties":[{"UUID":"126:1208","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1208.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1200","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":519.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":527.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1210","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":527.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":530.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1208.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"08","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":431.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:302","overrideProperties":[{"UUID":"126:1196","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1196.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"edit","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1198","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-288.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1198.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-285.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1196.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"07","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":431.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:304","overrideProperties":[{"UUID":"126:1184","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1184.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.9058823585510254,"g":0.2980392277240753,"b":0.23529411852359772},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1186","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-376.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1186.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-373.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1184.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"06","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":431.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:306","overrideProperties":[{"UUID":"126:1172","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1172.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1170","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1174","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-464.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1174.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-461.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1172.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"05","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":431.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:308","overrideProperties":[{"UUID":"126:1160","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1160.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_square","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1153","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":431.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":8.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":8.0,"type":"rectangle","child":null},{"UUID":"126:1158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":439.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1162","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":-552.0,"y":439.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1162.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.00250244140625,"width":18.00250244140625,"x":-549.0,"y":442.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1160.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"04","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-304.0,"y":311.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:310","overrideProperties":[{"UUID":"126:1145","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1145","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-283.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1145.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1137","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-304.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1138","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-304.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1143","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1147","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-296.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1147.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1145","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-283.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1145.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"03","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-392.0,"y":311.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:312","overrideProperties":[{"UUID":"126:1133","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-371.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1133.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-392.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1126","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-392.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.10672354698181152,"g":0.7099431157112122,"b":0.36251920461654663},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1135","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-384.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1135.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-371.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1133.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"02","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-480.0,"y":311.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:314","overrideProperties":[{"UUID":"126:1121","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-459.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1121.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-480.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1114","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-480.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.05600005388259888,"g":0.30100011825561523,"b":0.6439999341964722},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1123","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-472.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1123.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-459.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1121.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"01","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-568.0,"y":311.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:316","overrideProperties":[{"UUID":"126:1109","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"126:1109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-547.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1109.png","prototypeNodeUUID":null,"type":"image"},"type":"image"}],"children":[{"UUID":"126:1101","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Iconic/_fab","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-568.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"126:1102","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":56.0,"x":-568.0,"y":311.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":24.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":24.0,"type":"rectangle","child":null},{"UUID":"126:1107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"add plus","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":319.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"126:1111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Misc …/Icons Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":-560.0,"y":319.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/126_1111.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"126:1109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":-547.0,"y":332.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/126_1109.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true},{"UUID":"126:318","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Colors","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"126:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Colors","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1024.0,"width":712.0,"x":-64.0,"y":-1073.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Main","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:319","overrideProperties":[],"children":[{"UUID":"126:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":16.0,"y":-609.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Background"},{"UUID":"126:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Dark","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-681.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:322","overrideProperties":[],"children":[{"UUID":"126:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Main","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":208.0,"y":-609.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Main"},{"UUID":"126:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Accent | Error","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-681.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:325","overrideProperties":[],"children":[{"UUID":"126:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-681.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.772549033164978,"g":0.13333334028720856,"b":0.12156862765550613},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Accent | Error","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":400.0,"y":-609.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Accent | Error"},{"UUID":"126:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Primary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-489.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:328","overrideProperties":[],"children":[{"UUID":"126:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-489.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Primary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":16.0,"y":-417.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Primary"},{"UUID":"126:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Secondary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-489.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:331","overrideProperties":[],"children":[{"UUID":"126:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-489.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3764705955982208,"g":0.4941176474094391,"b":0.7450980544090271},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Secondary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":208.0,"y":-417.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Secondary"},{"UUID":"126:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Tretiary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-489.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:334","overrideProperties":[],"children":[{"UUID":"126:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-489.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":0.7333333492279053,"b":0.07058823853731155},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tretiary","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":400.0,"y":-417.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Tretiary"},{"UUID":"126:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Gradient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-297.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:337","overrideProperties":[],"children":[{"UUID":"126:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":16.0,"y":-297.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:339","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Gradient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":16.0,"y":-225.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Gradient"},{"UUID":"126:340","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"🎨 Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":360.0,"x":400.0,"y":-297.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:340","overrideProperties":[],"children":[],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:341","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":208.0,"y":-297.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null},{"UUID":"126:342","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Icon","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":208.0,"y":-225.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Icon"},{"UUID":"126:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"-background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":168.0,"width":168.0,"x":400.0,"y":-297.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9411764740943909,"g":0.9411764740943909,"b":0.9411764740943909},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":20.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":true,"fixedHeight":false,"fixedWidth":false},"fixedRadius":20.0,"type":"rectangle","child":null},{"UUID":"126:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Zajebiste Sdelano!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":56.0,"width":168.0,"x":400.0,"y":-241.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Zajebiste\nSdelano!"},{"UUID":"126:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Header","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":96.0,"width":552.0,"x":16.0,"y":-993.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9803921580314636,"g":0.9803921580314636,"b":0.9803921580314636},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"126:346","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":51.0,"width":113.0,"x":16.0,"y":-965.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":34.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"Colors"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}]},"isVisible":true},{"UUID":"126:347","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Typography","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"126:347","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Typography","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":40.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1024.0,"width":504.0,"x":-648.0,"y":-1073.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"126:349","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":344.0,"x":-568.0,"y":-965.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.5921568870544434,"g":0.5921568870544434,"b":0.5921568870544434},"weight":"400","fontDescriptor":{"fontName":"Inter","fontSize":34.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"type":"text","content":"poppins! Roboto"},{"UUID":"126:350","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14 sp • Body 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":-576.0,"y":-135.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:350","overrideProperties":[{"UUID":"126:351","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrBody 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:351","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":-576.0,"y":-135.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.07},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 2"},"type":"stringValue"}],"children":[{"UUID":"126:351","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":168.0,"x":-576.0,"y":-135.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.07},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 2"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:352","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14 sp • BUTTON","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.0,"width":168.0,"x":-576.0,"y":-184.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:352","overrideProperties":[{"UUID":"126:353","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrTXT Medium 14 sp","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:353","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"TXT Medium 14 sp","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":60.0,"x":-576.0,"y":-184.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.75},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"BUTTON"},"type":"stringValue"}],"children":[{"UUID":"126:353","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"TXT Medium 14 sp","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":60.0,"x":-576.0,"y":-184.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.75},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"BUTTON"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:354","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"14 sp • Subtitle 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-240.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:354","overrideProperties":[{"UUID":"126:355","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrSubtitle 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Subtitle 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-240.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.10000000149011612},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Subtitle 2\n"},"type":"stringValue"}],"children":[{"UUID":"126:355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Subtitle 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-240.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.10000000149011612},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Subtitle 2\n"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:356","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"16 sp • Body 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-291.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:356","overrideProperties":[{"UUID":"126:357","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrBody 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":51.0,"x":-576.0,"y":-291.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 1"},"type":"stringValue"}],"children":[{"UUID":"126:357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Body 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":51.0,"x":-576.0,"y":-291.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.16},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Body 1"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:358","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"20 sp • H6 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":168.0,"x":-576.0,"y":-347.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:358","overrideProperties":[{"UUID":"126:359","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH6 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H6 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.0,"width":122.0,"x":-576.0,"y":-347.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H6 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H6 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.0,"width":122.0,"x":-576.0,"y":-347.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.15000000596046448},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H6 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"24 sp • H5 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":168.0,"x":-576.0,"y":-408.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:360","overrideProperties":[{"UUID":"126:361","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH5 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H5 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":147.0,"x":-576.0,"y":-408.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H5 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:361","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H5 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":147.0,"x":-576.0,"y":-408.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H5 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:362","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"34 sp • H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":360.0,"x":-576.0,"y":-480.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:362","overrideProperties":[{"UUID":"126:363","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH4 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:363","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":51.0,"width":212.0,"x":-576.0,"y":-480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":34.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H4 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:363","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H4 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":51.0,"width":212.0,"x":-576.0,"y":-480.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":34.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.25},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H4 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:364","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"48 sp • H3 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":57.0,"width":360.0,"x":-576.0,"y":-569.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:364","overrideProperties":[{"UUID":"126:365","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH3 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H3 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":72.0,"width":292.0,"x":-576.0,"y":-569.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":48.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H3 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H3 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":72.0,"width":292.0,"x":-576.0,"y":-569.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":48.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H3 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"60 sp • H2 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":71.0,"width":360.0,"x":-576.0,"y":-672.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:366","overrideProperties":[{"UUID":"126:367","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH2 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H2 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.0,"width":364.0,"x":-576.0,"y":-672.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":60.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H2 Headline"},"type":"stringValue"}],"children":[{"UUID":"126:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H2 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.0,"width":364.0,"x":-576.0,"y":-672.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":60.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H2 Headline"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"126:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"96 sp • H1 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":113.0,"width":386.0,"x":-576.0,"y":-817.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"126:368","overrideProperties":[{"UUID":"126:369","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrH1 Headline","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"126:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H1 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":113.0,"width":386.0,"x":-576.0,"y":-817.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":96.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":-1.5},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H1 Head"},"type":"stringValue"}],"children":[{"UUID":"126:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"H1 Headline","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":113.0,"width":386.0,"x":-576.0,"y":-817.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.14901961386203766,"g":0.19607843458652496,"b":0.21960784494876862},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":96.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":-1.5},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"H1 Head"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true}],"type":"page"},{"UUID":"48:114","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"HI FI","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"screens":[{"UUID":"133:26","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 2","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"133:26","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 2","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":854.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"1003:474","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.0736083984375,"x":717.0,"y":-545.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"133:27","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1079.0,"y":-327.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","overrideProperties":null,"children":[{"UUID":"I133:27;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1122.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I133_27;75_3.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"I133:27;75:14","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"bi:bar-chart-fill","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":14.0,"x":1098.0,"y":-326.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"I133:27;75:15","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1098.875,"y":-325.25,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I133_27;75_15.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"I133:27;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1079.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I133_27;75_18.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"I133:27;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1156.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"133:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":1134.0,"y":185.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"133:115","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Class","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":192.0,"x":879.0,"y":93.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Class"},{"UUID":"133:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":960.0,"y":242.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"133:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":1010.0,"y":242.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"133:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":1180.0,"y":189.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/133_118.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"144:32","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Destination_re_sr74 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":284.0,"width":399.0,"x":878.0,"y":-248.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/144_32.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"152:57","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":879.0,"y":-298.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"463:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our Rides are safe and fast","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":176.0,"x":880.0,"y":127.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our Rides are safe and fast"}]},"isVisible":true},{"UUID":"137:27","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 3","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"137:27","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 3","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1254.0,"y":-344.0,"z":2.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"149:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.0736083984375,"x":1145.0,"y":-543.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"137:28","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1479.0,"y":-327.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1556.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1522.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I137_28;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I137_28;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1498.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I137_28;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I137_28;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I137:28;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1479.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I137_28;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I137_28;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"137:29","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Get Started","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":74.0,"x":1498.0,"y":185.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Get Started"},{"UUID":"137:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":1360.0,"y":242.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"137:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":1461.0,"y":242.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"137:34","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":1580.0,"y":189.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/137_34.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"147:74","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"undraw_Order_ride_re_372k 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":311.0,"width":663.0,"x":1224.0,"y":-277.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/147_74.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"137:31","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"We provide delivery service","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":313.0,"x":1276.0,"y":93.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.18431372940540314,"g":0.18039216101169586,"b":0.2549019753932953},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"We provide delivery service"},{"UUID":"464:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our ride ease stress and saves time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":232.0,"x":1280.0,"y":127.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our ride ease stress and saves time"}]},"isVisible":true},{"UUID":"149:32","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Login","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"149:32","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":1654.0,"y":-344.0,"z":3.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"815:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 161","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":598.0,"width":360.0,"x":1654.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"149:33","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":1879.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":1956.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":1922.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I149_33;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I149_33;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":1898.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I149_33;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I149_33;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I149:33;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":1879.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I149_33;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I149_33;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"159:75","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Login with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":1733.0,"y":230.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Login with"},{"UUID":"149:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":312.0,"width":360.0,"x":1654.0,"y":-344.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3803921639919281,"g":0.7058823704719543,"b":0.3607843220233917},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":180.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":180.0,"type":"rectangle","child":null},{"UUID":"159:68","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Welcome to Padi Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":263.0,"x":1705.0,"y":11.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":24.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Welcome to Padi Ride"},{"UUID":"159:69","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1681.0,"y":71.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":true,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":false},"children":[{"UUID":"159:70","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":308.0,"x":1681.0,"y":71.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_70.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:71","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+234","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":41.0,"x":1717.0,"y":82.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"+234"},{"UUID":"159:72","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7034675467","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":99.0,"x":1766.0,"y":82.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7034675467"},{"UUID":"159:73","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":1930.0,"y":85.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"},{"UUID":"159:74","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.087890625,"width":15.6201171875,"x":1697.0,"y":89.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_74.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"159:76","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":1681.0,"y":152.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:77","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Log In","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":48.0,"x":1811.0,"y":160.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Log In"},{"UUID":"159:78","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1876.0,"y":230.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_78.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1836.0,"y":230.0,"z":8.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:82","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1836.0,"y":230.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:83","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":1836.0,"y":233.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_83.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"159:89","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1915.0,"y":230.0,"z":9.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:90","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":1915.0,"y":230.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_90.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:92","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":1916.0,"y":233.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_92.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"815:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 160","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":209.99996948242188,"width":206.0001220703125,"x":1741.0,"y":-266.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/815_438.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"149:82","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Splash screen 1","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"149:82","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Splash screen 1","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":455.0,"y":-344.0,"z":1.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"149:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":615.6721801757812,"width":602.0736083984375,"x":349.0,"y":-545.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"149:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Hello, Welcome!","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":103.0,"x":482.0,"y":77.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Hello, Welcome!"},{"UUID":"463:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Our rides are negotiable and convenient","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":263.0,"x":480.0,"y":127.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Our rides are negotiable and convenient"},{"UUID":"149:85","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Experience Comfort","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.0,"width":224.0,"x":481.0,"y":94.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":22.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Experience Comfort"},{"UUID":"149:86","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":148.0,"x":561.0,"y":242.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"149:87","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.0,"width":47.0,"x":561.0,"y":242.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"350:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 147","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":56.0872802734375,"x":735.0,"y":186.0,"z":6.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"149:84","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Swipe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":38.0,"x":735.0,"y":186.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.24705882370471954,"g":0.239215686917305,"b":0.33725491166114807},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Swipe"},{"UUID":"149:88","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0872802734375,"x":781.0,"y":190.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_88.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"152:56","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Skip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":26.0,"x":481.0,"y":-297.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Skip"},{"UUID":"149:222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":268.20269775390625,"width":406.0957336425781,"x":456.9042663574219,"y":-258.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.2197265625,"width":0.05682373046875,"x":479.03253173828125,"y":-63.81378173828125,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_223.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2197723388671875,"width":3.5977783203125,"x":542.6530151367188,"y":-40.997833251953125,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_224.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.181320190429688,"width":8.8702392578125,"x":672.873779296875,"y":-235.738037109375,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":223.26889038085938,"width":75.3984375,"x":621.6570434570312,"y":-215.30508422851562,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_226.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":225.50778198242188,"width":30.41082763671875,"x":697.0554809570312,"y":-215.30508422851562,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_227.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":635.2796630859375,"y":-193.12445068359375,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_228.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":653.6536865234375,"y":-193.12445068359375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_229.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":672.0277709960938,"y":-193.12445068359375,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_230.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":635.596435546875,"y":-167.14060974121094,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_231.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":653.9705200195312,"y":-167.14060974121094,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":672.3446044921875,"y":-167.14060974121094,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":635.9132690429688,"y":-141.15676879882812,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":654.287353515625,"y":-141.15676879882812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_235.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":672.661376953125,"y":-141.15676879882812,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_236.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":636.2300415039062,"y":-115.17292785644531,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_237.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":654.6041259765625,"y":-115.17292785644531,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_238.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":672.9781494140625,"y":-115.17292785644531,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":636.5468139648438,"y":-89.1890869140625,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_240.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":654.9208984375,"y":-89.1890869140625,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_241.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":673.2949829101562,"y":-89.1890869140625,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_242.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:243","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":636.8636474609375,"y":-63.20526123046875,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_243.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:244","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":655.2376708984375,"y":-63.20526123046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_244.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:245","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":673.6117553710938,"y":-63.20526123046875,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_245.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:246","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":637.180419921875,"y":-37.221405029296875,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_246.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":655.554443359375,"y":-37.221405029296875,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_247.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":673.9285278320312,"y":-37.221405029296875,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_248.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9208526611328125,"width":11.403076171875,"x":637.498779296875,"y":-11.23822021484375,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.409912109375,"width":11.406982421875,"x":655.8701782226562,"y":-11.23828125,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_250.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":674.245361328125,"y":-11.237548828125,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_251.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.146377563476562,"width":8.87017822265625,"x":776.2531127929688,"y":-122.7779541015625,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_252.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":120.96284484863281,"width":75.39862060546875,"x":716.6956787109375,"y":-110.76014709472656,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_253.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":110.17411804199219,"width":30.4107666015625,"x":792.09423828125,"y":-110.76014709472656,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.404541015625,"x":731.5850830078125,"y":-89.1890869140625,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_255.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.40460205078125,"x":749.9591674804688,"y":-89.1890869140625,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_256.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.40753173828125,"width":11.4046630859375,"x":768.333251953125,"y":-89.1890869140625,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":731.9019775390625,"y":-63.20526123046875,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_258.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.40460205078125,"x":750.2760009765625,"y":-63.20526123046875,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_259.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407546997070312,"width":11.404541015625,"x":768.6500244140625,"y":-63.20526123046875,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":732.2186889648438,"y":-37.221405029296875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_261.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":750.5927734375,"y":-37.221405029296875,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_262.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":768.9669189453125,"y":-37.221405029296875,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_263.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":732.5355224609375,"y":-11.237548828125,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_264.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.404541015625,"x":750.9095458984375,"y":-11.237548828125,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_265.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.407516479492188,"width":11.40460205078125,"x":769.2836303710938,"y":-11.237548828125,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_266.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.060516357421875,"width":45.38482666015625,"x":725.6204833984375,"y":13.41522216796875,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_267.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":73.21176147460938,"width":167.76763916015625,"x":486.627685546875,"y":-49.431365966796875,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_268.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":52.68495178222656,"width":35.3814697265625,"x":487.39715576171875,"y":-36.77655029296875,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_269.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.35690307617188,"width":50.77081298828125,"x":605.25634765625,"y":-26.356903076171875,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":79.50950622558594,"width":295.288330078125,"x":486.3021240234375,"y":-55.07318115234375,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.98503112792969,"width":206.46176147460938,"x":503.4184265136719,"y":-100.46965026855469,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.48428344726562,"width":293.6189270019531,"x":489.1209411621094,"y":-69.9349365234375,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_273.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.6736907958984375,"width":12.59234619140625,"x":530.0390014648438,"y":-55.204376220703125,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.545944213867188,"width":11.54296875,"x":670.7913818359375,"y":-6.0029296875,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.851654052734375,"width":30.0291748046875,"x":652.338134765625,"y":-55.4085693359375,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.840133666992188,"width":24.3431396484375,"x":754.21240234375,"y":-58.72076416015625,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.721405029296875,"width":28.9266357421875,"x":511.44769287109375,"y":-93.66177368164062,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.922271728515625,"width":44.81951904296875,"x":543.92041015625,"y":-98.82081604003906,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":33.514373779296875,"width":99.5128173828125,"x":598.0042724609375,"y":-98.50166320800781,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_280.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.985595703125,"width":151.69342041015625,"x":521.1966552734375,"y":-107.94476318359375,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.73707580566406,"width":17.839141845703125,"x":490.0391540527344,"y":-28.045166015625,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":46.97100830078125,"width":28.33270263671875,"x":609.40380859375,"y":-15.7120361328125,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.188919067382812,"width":11.8052978515625,"x":573.9879150390625,"y":-67.23382568359375,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_284.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.645248413085938,"width":20.4625244140625,"x":559.4281005859375,"y":-74.62258911132812,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_285.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.010284423828125,"width":85.91632080078125,"x":694.1397094726562,"y":-36.967041015625,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_286.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06146240234375,"width":68.81048583984375,"x":703.2335815429688,"y":-33.68849563598633,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_287.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1764373779296875,"width":74.84539794921875,"x":699.710205078125,"y":-31.194204330444336,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0953521728515625,"width":80.26806640625,"x":696.9125366210938,"y":-27.806407928466797,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_289.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"149:290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 142","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.61727905273438,"width":93.19464111328125,"x":455.0,"y":-126.16268920898438,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/149_290.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"159:514","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Location pop up","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"159:514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Location pop up","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2854.0,"y":-344.0,"z":5.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"281:925","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2597.0,"y":-497.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/281_925.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:98","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":499.9476318359375,"width":324.798095703125,"x":3134.855712890625,"y":-32.592529296875,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"186:101","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.369384765625,"x":3260.345947265625,"y":25.62921142578125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_101.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:104","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.369384765625,"x":3326.781982421875,"y":269.90740966796875,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_104.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.369384765625,"x":3134.855712890625,"y":-32.592529296875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_107.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.50209045410156,"width":39.369384765625,"x":3420.284423828125,"y":147.135498046875,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_110.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.5020751953125,"width":39.369384765625,"x":3305.866943359375,"y":426.85302734375,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_113.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"159:559","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":429.0,"x":2825.0,"y":-344.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:599","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 144","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":2879.0,"y":-194.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:561","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":340.0,"width":310.0,"x":2879.0,"y":-194.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:562","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":149.0,"width":281.634033203125,"x":2890.143798828125,"y":-173.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":3},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"This app collects location data to enable Padi Ride stor users current location, update location & share location with other users even when the app is closed of not in use. To use maps for automatically allows Padi Ride to use your location data at all time."},{"UUID":"159:563","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":258.333251953125,"x":2902.0,"y":43.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:564","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Turn On Location","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":142.84326171875,"x":2960.0,"y":52.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Turn On Location "}],"type":"group"},{"UUID":"201:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3079.0,"y":-323.0,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3156.0,"y":-323.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3122.0,"y":-322.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_335;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_335;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3098.875,"y":-321.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_335;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_335;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:335;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3079.0,"y":-321.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_335;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_335;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"}]},"isVisible":true},{"UUID":"159:582","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Home","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"159:582","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3254.0,"y":-344.0,"z":6.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"279:898","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2966.0,"y":-747.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/279_898.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"796:408","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2975.0,"y":-735.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/796_408.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:896","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":2940.0,"y":-506.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"279:899","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.369384765625,"x":3759.345947265625,"y":-135.3785400390625,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_899.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:902","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 21","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.369384765625,"x":3825.781982421875,"y":102.0684814453125,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_902.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:905","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36946105957031,"width":39.369384765625,"x":3633.855712890625,"y":-191.97216796875,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_905.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:908","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36945724487305,"width":39.369384765625,"x":3919.284423828125,"y":-17.2701416015625,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_908.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:911","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":39.36944580078125,"width":39.369384765625,"x":3804.866943359375,"y":254.6251220703125,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/279_911.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:914","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.2119140625,"x":3673.225341796875,"y":70.080810546875,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"279:915","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":49.211822509765625,"width":49.2119140625,"x":3673.225341796875,"y":70.080810546875,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/279_915.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"279:916","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.7635498046875,"width":14.763427734375,"x":3690.449462890625,"y":87.30470275878906,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/279_916.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}],"type":"group"},{"UUID":"186:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3549.0,"y":-36.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"186:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3549.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/186_121.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":3563.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/186_122.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"176:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3279.0,"y":-33.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/176_80.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"186:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3279.0,"y":-294.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/186_128.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"176:81","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":3337.0,"y":-33.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/176_81.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:636","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":3289.0,"y":-23.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_636.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:638","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":3348.0,"y":-22.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_638.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:600","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":3315.0,"y":86.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"159:601","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":3292.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_601.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:603","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":3457.0,"y":86.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"159:611","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":3330.0,"y":127.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"189:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":3463.0,"y":127.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"159:620","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":3338.0,"y":102.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_620.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:626","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.299560546875,"x":3482.0,"y":102.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_626.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:632","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":3279.0,"y":-214.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:633","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":3289.0,"y":-199.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_633.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:634","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":3315.0,"y":-202.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"159:642","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":3385.0,"y":212.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"159:635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":3279.0,"y":-246.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "}]},"isVisible":true},{"UUID":"159:586","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Notification","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"159:586","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3478.0,"y":-500.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3555.0,"y":-500.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3521.0,"y":-499.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_586;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_586;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3497.875,"y":-498.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_586;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_586;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:586;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3478.0,"y":-498.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_586;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_586;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},"isVisible":true},{"UUID":"159:94","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Verification","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"159:94","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Verification","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2054.0,"y":-344.0,"z":4.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"159:96","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2279.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2356.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2322.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_96;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_96;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2298.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_96;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_96;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I159:96;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2279.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I159_96;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I159_96;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"159:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone Verification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":108.0,"x":2176.0,"y":-225.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone Verification"},{"UUID":"159:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Resend Code in 10 seconds","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":162.0,"x":2152.0,"y":-44.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Resend Code in 10 seconds"},{"UUID":"159:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter the 4-digit code sent to you at +234 073 623 6965. did you enter the correct number?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":268.0,"x":2097.0,"y":-179.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter the 4-digit code sent to you at \n+234 073 623 6965. did you enter the correct \nnumber?"},{"UUID":"159:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter your OTP code","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":194.0,"x":2133.0,"y":-208.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":19.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Enter your OTP code"},{"UUID":"159:164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2134.0,"y":-103.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_164.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2191.0,"y":-103.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_165.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:166","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2247.0,"y":-103.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_166.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":35.0,"width":35.0,"x":2299.0,"y":-103.0,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/159_167.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":307.0,"x":2080.0,"y":-10.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"159:169","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Enter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":42.0,"x":2213.0,"y":-2.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Enter"},{"UUID":"159:300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Light/Aphabetical","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":248.0,"width":360.0,"x":2054.0,"y":59.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"159:300","overrideProperties":[{"UUID":"159:369","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":3.0,"x":2374.0,"y":264.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_369.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:368","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:368","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.0,"width":11.5,"x":2374.0,"y":264.5,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_368.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:366","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2367.0,"y":254.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_366.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:374","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector 1","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":7.0,"x":2156.0,"y":265.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_374.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:373","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 4","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":2161.0,"y":261.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_373.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:372","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 3","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0,"width":2.0,"x":2156.0,"y":261.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_372.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:371","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:371","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2152.0,"y":256.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_371.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:345","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr?123","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":2069.0,"y":251.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},"type":"stringValue"},{"UUID":"159:344","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr,","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2110.0,"y":254.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},"type":"stringValue"},{"UUID":"159:343","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr.","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2323.0,"y":254.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},"type":"stringValue"},{"UUID":"159:377","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrPolygon 2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"159:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":2368.0,"y":213.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_377.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:382","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrShift","child":null,"constraints":null,"value":{"UUID":"159:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":2078.33984375,"y":214.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":null,"style":null,"imageReference":"images/159_382.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"159:338","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrp","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":117.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},"type":"stringValue"},{"UUID":"159:337","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr0","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":75.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},"type":"stringValue"},{"UUID":"159:336","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrl","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2357.0,"y":160.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},"type":"stringValue"},{"UUID":"159:335","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovro","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":117.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},"type":"stringValue"},{"UUID":"159:334","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr9","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":75.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},"type":"stringValue"},{"UUID":"159:333","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrk","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2322.0,"y":160.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},"type":"stringValue"},{"UUID":"159:332","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovri","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":117.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},"type":"stringValue"},{"UUID":"159:331","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr8","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":75.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},"type":"stringValue"},{"UUID":"159:330","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrm","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2323.0,"y":203.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},"type":"stringValue"},{"UUID":"159:329","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrj","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2287.0,"y":160.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},"type":"stringValue"},{"UUID":"159:328","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovru","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":117.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},"type":"stringValue"},{"UUID":"159:327","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr7","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":75.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},"type":"stringValue"},{"UUID":"159:326","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrn","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2288.0,"y":203.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},"type":"stringValue"},{"UUID":"159:325","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrh","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2252.0,"y":160.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},"type":"stringValue"},{"UUID":"159:324","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovry","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":117.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},"type":"stringValue"},{"UUID":"159:323","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr6","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":75.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},"type":"stringValue"},{"UUID":"159:322","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrb","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2253.0,"y":203.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},"type":"stringValue"},{"UUID":"159:321","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrg","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2217.0,"y":160.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},"type":"stringValue"},{"UUID":"159:320","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrt","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":117.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},"type":"stringValue"},{"UUID":"159:319","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr5","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":75.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},"type":"stringValue"},{"UUID":"159:318","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrv","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2218.0,"y":203.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},"type":"stringValue"},{"UUID":"159:317","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrf","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2182.0,"y":160.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},"type":"stringValue"},{"UUID":"159:316","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrr","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":117.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},"type":"stringValue"},{"UUID":"159:315","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr4","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":75.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},"type":"stringValue"},{"UUID":"159:314","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrc","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2183.0,"y":203.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},"type":"stringValue"},{"UUID":"159:313","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrd","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2147.0,"y":160.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},"type":"stringValue"},{"UUID":"159:312","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovre","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":117.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},"type":"stringValue"},{"UUID":"159:311","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr3","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":75.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},"type":"stringValue"},{"UUID":"159:310","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrx","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2148.0,"y":203.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},"type":"stringValue"},{"UUID":"159:309","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrs","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2112.0,"y":160.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},"type":"stringValue"},{"UUID":"159:308","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrw","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":117.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},"type":"stringValue"},{"UUID":"159:307","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr2","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":75.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},"type":"stringValue"},{"UUID":"159:306","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrz","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2113.0,"y":203.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},"type":"stringValue"},{"UUID":"159:305","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovra","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2077.0,"y":160.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},"type":"stringValue"},{"UUID":"159:304","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrq","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":117.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},"type":"stringValue"},{"UUID":"159:303","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovr1","child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"value":{"UUID":"159:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":75.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},"type":"stringValue"}],"children":[{"UUID":"159:301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Background","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":237.0,"width":360.0,"x":2054.0,"y":59.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.9215686321258545,"g":0.9372549057006836,"b":0.9490196108818054},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Keys","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":206.0,"width":348.0,"x":2060.0,"y":75.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":75.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"1"},{"UUID":"159:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"q","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2060.0,"y":117.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"q"},{"UUID":"159:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"a","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2077.0,"y":160.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"a"},{"UUID":"159:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"z","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2113.0,"y":203.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"z"},{"UUID":"159:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":75.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"2"},{"UUID":"159:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"w","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2095.0,"y":117.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"w"},{"UUID":"159:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"s","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2112.0,"y":160.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"s"},{"UUID":"159:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"x","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2148.0,"y":203.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"x"},{"UUID":"159:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":75.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"3"},{"UUID":"159:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"e","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2130.0,"y":117.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"e"},{"UUID":"159:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"d","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2147.0,"y":160.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"d"},{"UUID":"159:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"c","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2183.0,"y":203.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"c"},{"UUID":"159:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"4","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":75.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"4"},{"UUID":"159:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"r","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2165.0,"y":117.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"r"},{"UUID":"159:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"f","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2182.0,"y":160.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"f"},{"UUID":"159:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"v","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2218.0,"y":203.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"v"},{"UUID":"159:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":75.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"5"},{"UUID":"159:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"t","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2200.0,"y":117.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"t"},{"UUID":"159:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"g","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2217.0,"y":160.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"g"},{"UUID":"159:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"b","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2253.0,"y":203.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"b"},{"UUID":"159:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":75.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"6"},{"UUID":"159:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"y","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2235.0,"y":117.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"y"},{"UUID":"159:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"h","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2252.0,"y":160.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"h"},{"UUID":"159:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"n","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2288.0,"y":203.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"n"},{"UUID":"159:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":75.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"7"},{"UUID":"159:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"u","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2270.0,"y":117.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"u"},{"UUID":"159:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"j","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2287.0,"y":160.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"j"},{"UUID":"159:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"m","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2323.0,"y":203.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"m"},{"UUID":"159:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":75.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"8"},{"UUID":"159:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"i","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2305.0,"y":117.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"i"},{"UUID":"159:333","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"k","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2322.0,"y":160.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"k"},{"UUID":"159:334","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":75.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"9"},{"UUID":"159:335","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"o","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2340.0,"y":117.0,"z":32.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"o"},{"UUID":"159:336","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"l","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2357.0,"y":160.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"l"},{"UUID":"159:337","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":75.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"0"},{"UUID":"159:338","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"p","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":33.0,"x":2375.0,"y":117.0,"z":35.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"p"},{"UUID":"159:381","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Shift","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.5,"width":17.320556640625,"x":2078.33984375,"y":214.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_381.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"backspace","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":20.0,"x":2368.0,"y":213.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":14.0,"x":2374.0,"y":214.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"159:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Polygon 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":8.0,"x":2368.0,"y":213.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_377.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:378","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5,"width":6.0,"x":2377.0,"y":218.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_378.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"159:341","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"space","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":34.0,"width":129.0,"x":2183.0,"y":247.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_341.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":".","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2323.0,"y":254.0,"z":39.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"."},{"UUID":"159:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":",","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":26.0,"x":2110.0,"y":254.0,"z":40.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.2078431397676468,"g":0.250980406999588,"b":0.2666666805744171},"weight":"400","fontDescriptor":{"fontName":"Roboto","fontSize":19.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":","},{"UUID":"159:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"?123","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":33.0,"x":2069.0,"y":251.0,"z":41.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.49803921580314636,"g":0.5411764979362488,"b":0.5568627715110779},"weight":"500","fontDescriptor":{"fontName":"Roboto","fontSize":13.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"?123"},{"UUID":"159:370","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"emoji","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":2152.0,"y":256.0,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/159_370.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Back","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2367.0,"y":254.0,"z":43.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"159:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":25.0,"x":2367.0,"y":254.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_366.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"159:367","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0,"width":11.5,"x":2374.0,"y":264.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/159_367.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null}]},"isVisible":true},{"UUID":"201:80","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiation feature","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"201:80","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation feature","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4454.0,"y":-344.0,"z":11.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"201:99","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":4679.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":4756.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":4722.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_99;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_99;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":4698.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_99;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_99;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I201:99;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":4679.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I201_99;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I201_99;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"201:103","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":76.0,"x":4560.0,"y":-258.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"201:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":4562.0,"y":-233.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"1214:408","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 162","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":230.0,"width":310.0,"x":4479.0,"y":-58.0,"z":3.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"201:108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":4480.0,"y":-29.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"201:109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":4480.0,"y":11.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"201:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":230.0,"width":310.0,"x":4479.0,"y":-58.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"201:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Step 1: Select your mode of transportation Step 2: Negotiate with the driver for lower price Step 3: Request a your cab to start trip","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":148.0,"width":285.0,"x":4490.0,"y":5.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Step 1: Select your mode of transportation\n\nStep 2: Negotiate with the driver for lower price\n\nStep 3: Request a your cab to start trip"},{"UUID":"201:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Using the Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":284.0,"x":4490.0,"y":-39.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Using the Negotiation Feature"}],"type":"group"},{"UUID":"201:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":4590.0,"y":252.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"201:155","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"undraw_conversation_h12g 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":181.0,"width":279.0,"x":4492.0,"y":-258.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"201:156","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":180.9868621826172,"width":278.99609375,"x":4492.0048828125,"y":-257.9845886230469,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_156.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:157","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":170.74034118652344,"width":278.82470703125,"x":4492.1201171875,"y":-256.5289001464844,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_157.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.409164428710938,"width":228.6171875,"x":4492.0048828125,"y":-132.35848999023438,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_158.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.068038940429688,"width":228.6171875,"x":4492.0048828125,"y":-129.01736450195312,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_159.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":133.74151611328125,"width":91.8857421875,"x":4608.9052734375,"y":-216.7479248046875,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_160.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.85546875,"x":4619.41943359375,"y":-114.96939086914062,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_161.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.889480590820312,"width":50.85546875,"x":4619.41943359375,"y":-114.96939086914062,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_162.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560546875,"x":4649.42529296875,"y":-90.70497131347656,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_163.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:164","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9835205078125,"width":10.560546875,"x":4649.42529296875,"y":-90.70497131347656,"z":8.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_164.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.169921875,"x":4652.7314453125,"y":-91.4290771484375,"z":9.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_165.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:166","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.6176605224609375,"width":7.169921875,"x":4652.7314453125,"y":-91.4290771484375,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_166.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.5897216796875,"width":34.01708984375,"x":4659.47607421875,"y":-88.4639892578125,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_167.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:168","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2659454345703125,"width":6.48046875,"x":4661.7685546875,"y":-87.22409057617188,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_168.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:169","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49951171875,"x":4661.51611328125,"y":-87.24188232421875,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_169.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:170","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.281219482421875,"width":6.49951171875,"x":4661.51611328125,"y":-87.24188232421875,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_170.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:171","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.06097412109375,"width":33.9619140625,"x":4659.53173828125,"y":-88.4639892578125,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_171.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:172","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.19842529296875,"width":37.0732421875,"x":4658.50341796875,"y":-91.13943481445312,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_172.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:173","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.509490966796875,"width":40.68994140625,"x":4657.37890625,"y":-95.28091430664062,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_173.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:174","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.14971923828125,"width":82.1630859375,"x":4617.29443359375,"y":-112.43988037109375,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_174.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:175","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.872444152832031,"width":33.60791015625,"x":4609.33154296875,"y":-138.47586059570312,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_175.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:176","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.557296752929688,"width":22.9375,"x":4632.9970703125,"y":-153.87127685546875,"z":20.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_176.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:177","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.559852600097656,"width":22.9375,"x":4632.9970703125,"y":-153.77981567382812,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_177.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:178","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.388252258300781,"width":14.48291015625,"x":4633.50146484375,"y":-137.68951416015625,"z":22.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_178.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:179","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.370384216308594,"width":10.08154296875,"x":4632.857421875,"y":-136.02227783203125,"z":23.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_179.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.388252258300781,"width":14.48193359375,"x":4632.9970703125,"y":-137.68951416015625,"z":24.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_180.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:181","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.390426635742188,"width":14.48193359375,"x":4632.9970703125,"y":-137.5113067626953,"z":25.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_181.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.910018920898438,"width":19.31396484375,"x":4643.958984375,"y":-196.8544464111328,"z":26.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_182.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:183","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.314910888671875,"width":10.61328125,"x":4643.9541015625,"y":-196.8544464111328,"z":27.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_183.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.509552001953125,"width":24.125,"x":4630.92333984375,"y":-211.29299926757812,"z":28.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_184.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.017349243164062,"width":46.52880859375,"x":4652.9287109375,"y":-112.447509765625,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":98.12994384765625,"width":56.2294921875,"x":4644.12939453125,"y":-191.21307373046875,"z":30.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_186.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.6978759765625,"width":29.44970703125,"x":4631.7158203125,"y":-125.22908020019531,"z":31.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.9834747314453125,"width":6.525390625,"x":4676.93798828125,"y":-167.79318237304688,"z":32.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_188.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.237457275390625,"width":25.26513671875,"x":4667.865234375,"y":-125.85411071777344,"z":33.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_189.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:190","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.13446044921875,"width":23.68505859375,"x":4631.36328125,"y":-211.2978057861328,"z":34.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_190.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:191","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.74609375,"width":35.1640625,"x":4624.16162109375,"y":-215.7036590576172,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_191.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:192","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.92510986328125,"width":13.2421875,"x":4647.92333984375,"y":-125.22908020019531,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_192.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:193","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6055908203125,"width":29.4453125,"x":4646.78369140625,"y":-188.8612823486328,"z":37.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_193.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:194","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.36421966552734,"width":25.83837890625,"x":4649.38427734375,"y":-189.4024658203125,"z":38.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_194.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":69.6106948852539,"width":29.43603515625,"x":4646.2822265625,"y":-189.4024658203125,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_195.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:196","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.970703125,"x":4646.5302734375,"y":-128.5371551513672,"z":40.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_196.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:197","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.478561401367188,"width":11.97119140625,"x":4646.27734375,"y":-128.27035522460938,"z":41.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_197.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:198","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.058914184570312,"width":35.146484375,"x":4624.18310546875,"y":-204.0164794921875,"z":42.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_198.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:201","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.3701324462890625,"width":4.4716796875,"x":4607.35400390625,"y":-91.16229248046875,"z":43.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_201.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:202","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":111.50717163085938,"width":54.5185546875,"x":4558.84228515625,"y":-211.30555725097656,"z":44.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_202.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:203","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.533203125,"x":4576.14794921875,"y":-114.88555908203125,"z":45.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_203.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:204","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.89404296875,"width":30.533203125,"x":4576.14794921875,"y":-114.88555908203125,"z":46.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_204.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:205","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.656272888183594,"width":12.87744140625,"x":4562.81201171875,"y":-135.84442138671875,"z":47.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_205.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:206","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.322837829589844,"width":14.50830078125,"x":4552.27783203125,"y":-138.8756103515625,"z":48.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_206.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:207","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.331558227539062,"width":14.505859375,"x":4552.78515625,"y":-138.78919982910156,"z":49.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_207.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:208","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":23.45648193359375,"width":20.595703125,"x":4540.2001953125,"y":-204.5166015625,"z":50.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_208.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:209","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.34686279296875,"width":36.994140625,"x":4547.67138671875,"y":-88.84257507324219,"z":51.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_209.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:210","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.862640380859375,"width":7.50390625,"x":4541.9912109375,"y":-89.82585144042969,"z":52.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_210.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:211","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.5087890625,"x":4541.734375,"y":-89.82585144042969,"z":53.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_211.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:212","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9962615966796875,"width":7.169921875,"x":4582.47216796875,"y":-88.48686218261719,"z":54.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_212.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:213","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.16748046875,"x":4582.7265625,"y":-88.48686218261719,"z":55.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_213.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:214","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.9566497802734375,"width":7.5087890625,"x":4541.734375,"y":-89.82585144042969,"z":56.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_214.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:215","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.064849853515625,"width":7.16748046875,"x":4582.7265625,"y":-88.48686218261719,"z":57.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_215.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:216","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.960113525390625,"width":12.6953125,"x":4547.5634765625,"y":-204.52423095703125,"z":58.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_216.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:217","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":28.329742431640625,"width":26.7919921875,"x":4547.078125,"y":-218.33953857421875,"z":59.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_217.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:218","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.241928100585938,"width":26.2548828125,"x":4547.05029296875,"y":-218.3343963623047,"z":60.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_218.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:219","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.654052734375,"width":33.6865234375,"x":4543.08154296875,"y":-222.19964599609375,"z":61.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_219.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:220","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7603607177734375,"width":2.8818359375,"x":4555.30029296875,"y":-135.21942138671875,"z":62.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_220.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:221","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.28337097167969,"width":97.68408203125,"x":4517.45068359375,"y":-120.84367370605469,"z":63.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_221.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:222","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5286865234375,"width":7.8232421875,"x":4542.9404296875,"y":-110.33245849609375,"z":64.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_222.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:223","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.7091217041015625,"width":4.7109375,"x":4556.67626953125,"y":-105.70063781738281,"z":65.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_223.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:224","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.860107421875,"width":4.8056640625,"x":4605.24853515625,"y":-96.24639892578125,"z":66.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_224.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:225","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.226776123046875,"width":47.59814453125,"x":4542.29638671875,"y":-89.82585144042969,"z":67.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_225.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:226","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.59661865234375,"width":55.923828125,"x":4538.01953125,"y":-91.69841003417969,"z":68.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_226.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:227","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.663070678710938,"width":41.40673828125,"x":4517.43408203125,"y":-120.85383605957031,"z":69.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_227.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:228","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":90.9999771118164,"width":47.2255859375,"x":4512.55908203125,"y":-193.13336181640625,"z":70.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_228.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.093452453613281,"width":13.7568359375,"x":4540.25927734375,"y":-130.13531494140625,"z":71.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_229.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:230","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.346038818359375,"width":12.65087890625,"x":4540.38623046875,"y":-141.46206665039062,"z":72.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_230.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:231","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.183670043945312,"width":6.81396484375,"x":4546.88134765625,"y":-147.17376708984375,"z":73.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_231.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:232","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.5859375,"width":11.06884765625,"x":4534.06201171875,"y":-171.78375244140625,"z":74.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_232.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:233","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.262794494628906,"width":20.61572265625,"x":4520.27734375,"y":-146.18795776367188,"z":75.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_233.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:234","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.871017456054688,"width":14.13427734375,"x":4598.07861328125,"y":-115.15995788574219,"z":76.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_234.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:235","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":44.62644958496094,"width":15.66650390625,"x":4544.11767578125,"y":-188.7512969970703,"z":77.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_235.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9530487060546875,"width":11.93017578125,"x":4587.91455078125,"y":-112.46163940429688,"z":78.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_236.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.1304931640625,"width":3.63525390625,"x":4598.1318359375,"y":-115.15995788574219,"z":79.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_237.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:238","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":82.25939178466797,"width":56.3740234375,"x":4544.89208984375,"y":-189.28884887695312,"z":80.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_238.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:239","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7742156982421875,"width":6.642578125,"x":4567.54541015625,"y":-148.832275390625,"z":81.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_239.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:240","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.4514007568359375,"width":5.36962890625,"x":4566.36328125,"y":-138.00094604492188,"z":82.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_240.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:241","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.759552001953125,"width":11.05322265625,"x":4553.20556640625,"y":-179.27651977539062,"z":83.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_241.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:242","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.236785888671875,"width":33.6708984375,"x":4543.07666015625,"y":-213.96829223632812,"z":84.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_242.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:247","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.53955078125,"x":4497.7021484375,"y":-147.25204467773438,"z":85.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_247.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:248","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.48785400390625,"width":9.53955078125,"x":4497.7021484375,"y":-147.25204467773438,"z":86.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_248.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:249","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.515533447265625,"width":1.8505859375,"x":4497.89599609375,"y":-146.68356323242188,"z":87.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_249.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:250","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.7698211669921875,"width":0.849609375,"x":4500.0869140625,"y":-147.25143432617188,"z":88.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_250.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:251","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.0737457275390625,"width":1.03515625,"x":4504.1201171875,"y":-147.15646362304688,"z":89.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_251.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:252","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":2.159088134765625,"width":1.8369140625,"x":4505.59033203125,"y":-146.53799438476562,"z":90.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_252.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:253","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.506683349609375,"width":0.81201171875,"x":4498.9345703125,"y":-145.67471313476562,"z":91.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_253.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:254","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.5869140625,"width":0.41552734375,"x":4500.0927734375,"y":-146.06854248046875,"z":92.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_254.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:255","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.79107666015625,"width":3.365234375,"x":4498.91455078125,"y":-145.8669891357422,"z":93.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_255.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:256","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.66058349609375,"width":0.49267578125,"x":4504.66064453125,"y":-145.74331665039062,"z":94.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_256.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:257","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.242431640625,"width":0.7470703125,"x":4505.59033203125,"y":-145.62643432617188,"z":95.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_257.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:258","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.27117919921875,"width":4.0849609375,"x":4502.310546875,"y":-145.54736328125,"z":96.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_258.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:259","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.73779296875,"x":4498.31982421875,"y":-132.4829864501953,"z":97.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_259.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:260","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.49951171875,"x":4497.40673828125,"y":-137.668701171875,"z":98.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_260.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:261","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.73779296875,"x":4498.31982421875,"y":-132.4829864501953,"z":99.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_261.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:262","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.49951171875,"x":4497.40673828125,"y":-137.668701171875,"z":100.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_262.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:263","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.5956268310546875,"width":5.73779296875,"x":4498.69677734375,"y":-132.4829864501953,"z":101.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_263.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:264","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.2195587158203125,"width":1.376953125,"x":4500.90283203125,"y":-142.29547119140625,"z":102.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_264.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:265","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.663604736328125,"width":1.8017578125,"x":4502.310546875,"y":-141.93978881835938,"z":103.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_265.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:266","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.356536865234375,"width":4.884765625,"x":4499.23046875,"y":-142.12835693359375,"z":104.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_266.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4499.888671875,"y":-144.53390502929688,"z":105.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_267.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4499.8740234375,"y":-143.60397338867188,"z":106.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_268.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.3798828125,"x":4505.3427734375,"y":-144.35093688964844,"z":107.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_269.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014739990234375,"width":0.3798828125,"x":4500.943359375,"y":-139.58192443847656,"z":108.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_270.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4504.951171875,"y":-142.80618286132812,"z":109.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_271.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4503.00244140625,"y":-140.74560546875,"z":110.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_272.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4500.5322265625,"y":-144.135009765625,"z":111.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_273.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4504.82421875,"y":-143.75387573242188,"z":112.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4504.18017578125,"y":-142.20909118652344,"z":113.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4502.2001953125,"y":-139.73182678222656,"z":114.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.401458740234375,"width":0.3798828125,"x":4501.79150390625,"y":-140.71258544921875,"z":115.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:278","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014434814453125,"width":0.3798828125,"x":4500.81591796875,"y":-142.9230499267578,"z":116.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_278.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:279","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.581817626953125,"width":5.73779296875,"x":4498.69677734375,"y":-132.4829864501953,"z":117.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_279.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.569366455078125,"width":7.49951171875,"x":4497.78369140625,"y":-137.668701171875,"z":118.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_280.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:281","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.4014129638671875,"width":0.3798828125,"x":4502.45263671875,"y":-138.8349151611328,"z":119.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_281.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:282","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":0.40142822265625,"width":0.3798828125,"x":4501.3203125,"y":-138.58340454101562,"z":120.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_282.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:283","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.2418670654296875,"width":6.84326171875,"x":4724.2119140625,"y":-171.2761688232422,"z":121.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_283.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:284","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.0942840576171875,"width":7.04296875,"x":4723.435546875,"y":-176.99705505371094,"z":122.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_284.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.396514892578125,"width":6.802734375,"x":4723.2119140625,"y":-183.5743408203125,"z":123.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_285.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2618408203125,"width":6.39404296875,"x":4723.28173828125,"y":-189.83880615234375,"z":124.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_286.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2097320556640625,"width":6.271484375,"x":4723.7119140625,"y":-195.59494018554688,"z":125.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_287.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.639190673828125,"width":5.478515625,"x":4724.31494140625,"y":-201.41445922851562,"z":126.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_288.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.2234344482421875,"width":4.6806640625,"x":4724.82421875,"y":-207.91363525390625,"z":127.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_289.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:290","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.0074615478515625,"width":4.1904296875,"x":4725.0380859375,"y":-214.01150512695312,"z":128.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_290.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:291","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.194686889648438,"width":1.783203125,"x":4725.03369140625,"y":-222.58917236328125,"z":129.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_291.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:292","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.892318725585938,"width":2.89990234375,"x":4722.06103515625,"y":-230.63327026367188,"z":130.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_292.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:293","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":3.567901611328125,"width":6.26171875,"x":4717.6904296875,"y":-162.89166259765625,"z":131.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_293.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:294","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.1551513671875,"width":7.68896484375,"x":4716.62109375,"y":-169.49844360351562,"z":132.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_294.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:295","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.2594451904296875,"width":7.669921875,"x":4716.046875,"y":-175.70408630371094,"z":133.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_295.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:296","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.728424072265625,"width":6.5380859375,"x":4717.13525390625,"y":-184.0205841064453,"z":134.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_296.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:297","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9545135498046875,"width":5.61767578125,"x":4717.8173828125,"y":-190.54420471191406,"z":135.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_297.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:298","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.454254150390625,"width":6.00732421875,"x":4718.24755859375,"y":-196.15451049804688,"z":136.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_298.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:299","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9043731689453125,"width":3.892578125,"x":4720.7998046875,"y":-202.79396057128906,"z":137.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_299.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:300","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.5308837890625,"width":4.2412109375,"x":4720.70849609375,"y":-208.34811401367188,"z":138.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_300.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:301","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.640106201171875,"width":3.18603515625,"x":4722.265625,"y":-214.25033569335938,"z":139.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_301.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:302","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.307937622070312,"width":4.25537109375,"x":4721.04443359375,"y":-222.00732421875,"z":140.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_302.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:303","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.194015502929688,"width":7.28564453125,"x":4717.4765625,"y":-228.21697998046875,"z":141.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_303.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:304","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.97296142578125,"width":7.44873046875,"x":4715.359375,"y":-232.32797241210938,"z":142.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_304.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:305","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.97601318359375,"width":2.87060546875,"x":4722.41455078125,"y":-224.92413330078125,"z":143.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_305.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.387466430664062,"width":2.087890625,"x":4723.1640625,"y":-207.71798706054688,"z":144.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_306.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.034042358398438,"width":2.044921875,"x":4723.07275390625,"y":-183.12579345703125,"z":145.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_307.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.219207763671875,"width":5.43994140625,"x":4742.42041015625,"y":-178.61740112304688,"z":146.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_308.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:309","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.465606689453125,"width":7.5400390625,"x":4742.8076171875,"y":-184.40798950195312,"z":147.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_309.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.13604736328125,"width":7.732421875,"x":4743.55712890625,"y":-190.58685302734375,"z":148.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_310.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:311","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.921234130859375,"width":7.65087890625,"x":4744.5205078125,"y":-196.73797607421875,"z":149.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_311.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.80780029296875,"width":7.5400390625,"x":4746.0703125,"y":-202.20916748046875,"z":150.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_312.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.376251220703125,"width":6.58642578125,"x":4747.970703125,"y":-207.88772583007812,"z":151.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_313.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.0902252197265625,"width":5.88232421875,"x":4749.66015625,"y":-214.26046752929688,"z":152.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_314.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:315","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":5.9936981201171875,"width":5.25732421875,"x":4751.20068359375,"y":-220.28721618652344,"z":153.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_315.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:316","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.724624633789062,"width":3.255859375,"x":4751.8515625,"y":-229.36288452148438,"z":154.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_316.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.235321044921875,"width":1.4052734375,"x":4752.6806640625,"y":-238.10824584960938,"z":155.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_317.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:318","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.867462158203125,"width":3.0205078125,"x":4734.66162109375,"y":-171.76087951660156,"z":156.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_318.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:319","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.7657623291015625,"width":7.24462890625,"x":4735.1708984375,"y":-178.8802490234375,"z":157.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_319.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":4.8140869140625,"width":7.28564453125,"x":4735.79833984375,"y":-185.03988647460938,"z":158.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_320.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":7.9170684814453125,"width":5.34619140625,"x":4738.77783203125,"y":-193.5251922607422,"z":159.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_321.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.94354248046875,"width":4.185546875,"x":4740.72900390625,"y":-199.76535034179688,"z":160.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_322.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.597976684570312,"width":4.642578125,"x":4742.2353515625,"y":-205.18482971191406,"z":161.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_323.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:324","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.5115966796875,"width":2.58154296875,"x":4745.9111328125,"y":-211.14295959472656,"z":162.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_324.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:325","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.254989624023438,"width":2.79833984375,"x":4747.005859375,"y":-216.59800720214844,"z":163.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_325.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:326","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":8.074600219726562,"width":2.1318359375,"x":4749.4462890625,"y":-222.0352783203125,"z":164.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_326.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:327","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.016815185546875,"width":2.447265625,"x":4749.72412109375,"y":-229.89390563964844,"z":165.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_327.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:328","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.604141235351562,"width":5.52685546875,"x":4747.72314453125,"y":-236.7463836669922,"z":166.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_328.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:329","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.378005981445312,"width":5.81005859375,"x":4746.455078125,"y":-241.22830200195312,"z":167.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_329.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.189422607421875,"width":2.21875,"x":4750.94580078125,"y":-232.43975830078125,"z":168.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_330.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:331","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.457550048828125,"width":6.9921875,"x":4744.359375,"y":-214.98208618164062,"z":169.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_331.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"201:332","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.145172119140625,"width":2.806640625,"x":4742.05029296875,"y":-191.38333129882812,"z":170.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/201_332.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"203:144","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":4481.0,"y":-294.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_144.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"1214:409","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 163","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":308.0,"x":4479.0,"y":204.0,"z":7.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"201:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn more","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":4479.0,"y":210.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn more"},{"UUID":"201:132","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":36.0,"width":166.0,"x":4621.0,"y":204.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"201:134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":121.0,"x":4628.0,"y":209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate Ride"},{"UUID":"203:146","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":4761.0,"y":214.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_146.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"}]},"isVisible":true},{"UUID":"203:154","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Search","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"203:154","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":3654.0,"y":-344.0,"z":10.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"203:229","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":3878.0,"y":-320.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":3955.0,"y":-320.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":3921.0,"y":-319.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_229;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_229;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":3897.875,"y":-318.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_229;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_229;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:229;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":3878.0,"y":-318.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_229;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_229;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"203:236","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":3679.0,"y":202.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"203:237","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Done","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":3810.0,"y":214.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Done"},{"UUID":"435:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 50","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":106.0,"width":311.0,"x":3679.0,"y":-258.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"203:267","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":0.0,"x":3699.5,"y":-213.00758361816406,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"203:268","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":270.0,"x":3719.0,"y":-200.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"203:269","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Area 11, Garki area........","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":3729.0,"y":-228.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Area 11, Garki area........"},{"UUID":"203:270","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Home.","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":39.0,"x":3717.0,"y":-132.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Home."},{"UUID":"203:271","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"12, Jabi area, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":136.0,"x":3729.0,"y":-190.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"12, Jabi area, Abuja"},{"UUID":"203:272","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"University of Abuja, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":155.0,"x":3717.0,"y":-109.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"University of Abuja, Abuja"},{"UUID":"203:273","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"46 Kbuwa, Abuja","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":3717.0,"y":-86.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"46 Kbuwa, Abuja"},{"UUID":"203:274","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":3691.0,"y":-224.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_274.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:275","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":3691.0,"y":-187.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_275.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:276","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":13.0,"width":13.0,"x":3691.0,"y":-131.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_276.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.383148193359375,"width":12.383056640625,"x":3691.673828125,"y":-107.06521606445312,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:280","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.383148193359375,"width":12.383056640625,"x":3691.673828125,"y":-83.478271484375,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_280.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"203:89","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Menu","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"203:89","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Menu","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4054.0,"y":-344.0,"z":8.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"281:926","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":4025.0,"y":-814.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/281_926.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:90","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Mapsicle Map","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4054.0,"y":-344.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"203:92","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4349.0,"y":-36.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"203:93","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4349.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_93.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:94","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":4363.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_94.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"203:96","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4079.0,"y":-33.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_96.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:97","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4079.0,"y":-294.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_97.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:98","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4137.0,"y":-33.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_98.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:99","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":4089.0,"y":-23.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_99.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:100","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":4148.0,"y":-22.0,"z":7.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_100.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:103","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":4122.0,"y":54.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"203:104","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":4092.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_104.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:106","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":4248.0,"y":54.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"203:107","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":4137.0,"y":95.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"203:108","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":4254.0,"y":95.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"203:109","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":4145.0,"y":70.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_109.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:115","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":4153.23046875,"y":-200.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_115.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":4273.0,"y":70.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_116.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.22802734375,"x":4135.0,"y":-168.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/203_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":4079.0,"y":-217.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"203:126","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":4089.0,"y":-202.0,"z":18.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/203_126.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"203:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":4115.0,"y":-205.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"203:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":4185.0,"y":212.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"203:134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":4079.0,"y":-251.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"203:91","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":4279.0,"y":-327.0,"z":22.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":4356.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":4322.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_91;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_91;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":4298.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_91;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_91;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I203:91;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":4279.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I203_91;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I203_91;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"203:141","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 145","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":4025.0,"y":-344.0,"z":23.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"189:149","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":4025.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"189:150","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":4075.0,"y":-272.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/189_150.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"189:152","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":4156.0,"y":-258.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"189:153","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":74.0,"x":4075.0,"y":-155.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"payment"},{"UUID":"189:154","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":95.0,"x":4075.0,"y":-115.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"189:155","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notifications","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":102.0,"x":4075.0,"y":-75.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Notifications"},{"UUID":"189:156","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":65.0,"x":4075.0,"y":5.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Support"},{"UUID":"461:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi delivery","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":104.0,"x":4075.0,"y":-35.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi delivery"},{"UUID":"189:157","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":4075.0,"y":45.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"189:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":4075.0,"y":85.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"189:159","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":66.0,"x":4158.0,"y":-233.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"189:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Good Morning,","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":77.0,"x":4063.0,"y":-318.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Good Morning, "},{"UUID":"189:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 15","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":4078.0,"y":176.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"189:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":4098.0,"y":188.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"189:163","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":4099.0,"y":209.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"189:165","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":4248.0,"y":198.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/189_165.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"229:431","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":4081.0,"y":243.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"218:86","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Negotiate","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"218:86","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":4854.0,"y":-344.0,"z":17.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"281:993","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":4473.0,"y":-568.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/281_993.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:306","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5149.0,"y":-36.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"224:307","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5149.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_307.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:308","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":5163.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_308.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"224:310","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4879.0,"y":-33.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_310.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:312","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":4937.0,"y":-33.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_312.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:313","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":4889.0,"y":-23.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_313.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:314","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":4948.0,"y":-22.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_314.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:317","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":4922.0,"y":54.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"224:320","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":5048.0,"y":54.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"224:321","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":4937.0,"y":95.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"224:322","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":5054.0,"y":95.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"224:323","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":4945.0,"y":70.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_323.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:330","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":5073.0,"y":70.0,"z":11.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/224_330.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:342","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":4878.0,"y":203.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"224:343","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":4985.0,"y":212.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"224:344","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":5062.0,"y":-23.999988555908203,"z":14.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"224:345","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":5062.0,"y":-23.999988555908203,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_345.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"224:346","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625298500061035,"width":12.62548828125,"x":5076.7294921875,"y":-9.270495414733887,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/224_346.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"218:87","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":5079.0,"y":-327.0,"z":15.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":5156.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":5122.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I218_87;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I218_87;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":5098.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I218_87;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I218_87;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I218:87;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":5079.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I218_87;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I218_87;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"218:277","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":4881.0,"y":-294.0,"z":16.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/218_277.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"438:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":4866.0,"y":-244.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"438:117","overrideProperties":[{"UUID":"441:111","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"441:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47808837890625,"width":9.92529296875,"x":4954.03759765625,"y":-126.19964599609375,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/441_111.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"441:116","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrVector2","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"441:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.149429321289062,"width":24.97119140625,"x":5141.98828125,"y":-120.28349304199219,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/441_116.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"443:117","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrEllipse 438","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":5132.0,"y":-127.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/443_117.png","prototypeNodeUUID":null,"type":"image"},"type":"image"},{"UUID":"443:118","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCar model: Honda Civic","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":4879.0,"y":-80.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},"type":"stringValue"},{"UUID":"443:119","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ovrCar colour: Grey","child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":4880.0,"y":-60.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"},"type":"stringValue"}],"children":[{"UUID":"218:285","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":677.0,"width":337.0,"x":4866.0,"y":-244.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"441:110","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ant-design:star-outlined","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.47808837890625,"width":9.92529296875,"x":4953.0,"y":-127.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/441_110.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"443:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 155","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":5132.0,"y":-127.0,"z":2.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"443:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 438","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":43.0,"width":43.0,"x":5132.0,"y":-127.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/443_117.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"441:114","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"fluent:call-24-filled","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":38.20293426513672,"width":38.203125,"x":5134.45703125,"y":-125.77142333984375,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"441:115","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.149429321289062,"width":24.97119140625,"x":5141.98828125,"y":-120.28349304199219,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/441_115.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null}],"type":"group"},{"UUID":"443:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car model: Honda Civic","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":156.0,"x":4879.0,"y":-80.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car model: Honda Civic"},{"UUID":"443:119","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Car colour: Grey","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":107.0,"x":4880.0,"y":-60.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":13.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Car colour: Grey"}],"type":"shared_master","componentSetName":null,"sharedNodeSetID":null},{"UUID":"218:286","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":269.0,"x":4879.0,"y":-3.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"218:287","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Price: N384.5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":20.0,"width":126.0,"x":4903.0,"y":11.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Price: N384.5"},{"UUID":"218:288","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":155.0,"x":5034.0,"y":-3.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"218:289","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiate","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":81.0,"x":5075.0,"y":9.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiate "},{"UUID":"438:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5 MINs","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":68.0,"x":5000.0,"y":-197.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5 MINs "},{"UUID":"441:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"GXM 507 AJ","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":84.0,"x":4947.0,"y":-113.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"GXM 507 AJ "},{"UUID":"438:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your rider will be at your location in","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":286.0,"x":4890.0,"y":-221.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Your rider will be at your location in "},{"UUID":"438:113","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Tunde Kareem","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":91.0,"x":4947.0,"y":-145.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Tunde Kareem"},{"UUID":"441:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5.0","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":4970.0,"y":-128.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5.0"},{"UUID":"421:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 148","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":4890.0,"y":102.0,"z":27.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:110","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want someone to join your ride?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":198.0,"x":4890.0,"y":102.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want someone to join your ride?"}],"type":"group"},{"UUID":"421:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 149","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":4890.0,"y":155.0,"z":28.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Do you want to negotiate with driver?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":186.0,"x":4890.0,"y":155.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Do you want to negotiate with driver?"}],"type":"group"},{"UUID":"421:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":310.0,"x":4879.0,"y":93.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"421:120","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 48","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":311.0,"x":4878.0,"y":148.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"421:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 154","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":5099.0,"y":100.0,"z":31.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 151","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":100.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":100.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"421:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":5099.0,"y":114.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"421:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 153","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":70.0,"x":5099.0,"y":155.0,"z":32.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 152","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":155.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"421:126","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CLICK HERE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":69.0,"x":5100.0,"y":155.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"CLICK HERE"}],"type":"group"},{"UUID":"421:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":70.0,"x":5099.0,"y":169.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}],"type":"group"},{"UUID":"424:111","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":33.0,"x":4932.0,"y":219.0,"z":33.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"432:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":31.0,"x":5021.0,"y":219.0,"z":34.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Card"},{"UUID":"432:133","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 435","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":4998.0,"y":220.0,"z":35.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/432_133.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"432:136","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 436","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":15.0,"x":4909.0,"y":220.0,"z":36.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/432_136.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"432:134","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 49","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":25.0,"width":84.0,"x":5075.0,"y":212.0,"z":37.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":5.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":5.0,"type":"rectangle","child":null},{"UUID":"432:135","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Confirm","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":50.0,"x":5092.0,"y":216.0,"z":38.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Confirm "},{"UUID":"438:112","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 437","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":64.0,"width":64.0,"x":4879.0,"y":-151.0,"z":39.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/438_112.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"228:355","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"payment method","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"228:355","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"payment method","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5654.0,"y":-344.0,"z":9.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:180","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":5493.0,"y":-777.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/308_180.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:358","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5949.0,"y":-36.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"228:359","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5949.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_359.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:360","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":5963.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_360.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"228:362","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5679.0,"y":-33.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_362.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:363","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5679.0,"y":-294.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_363.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:364","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":5737.0,"y":-33.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_364.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:365","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":5689.0,"y":-23.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_365.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:366","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":5748.0,"y":-22.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_366.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:369","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":5722.0,"y":54.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"228:370","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":5692.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_370.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:372","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":5848.0,"y":54.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"228:373","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":5737.0,"y":95.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"228:374","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":5854.0,"y":95.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"228:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":5745.0,"y":70.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_375.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:381","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":5753.23046875,"y":-200.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_381.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":5873.0,"y":70.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_382.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:388","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.22802734375,"x":5735.0,"y":-168.0,"z":15.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/228_388.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:391","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 45","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":310.0,"x":5679.0,"y":-189.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"228:392","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.061996459960938,"width":19.06005859375,"x":5689.0,"y":-174.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_392.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:393","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Search for a Destination","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":194.0,"x":5715.0,"y":-177.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Search for a Destination"},{"UUID":"228:395","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":5785.0,"y":212.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"228:400","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Where are you going?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":178.0,"x":5679.0,"y":-223.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Where are you going? "},{"UUID":"228:357","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":5879.0,"y":-327.0,"z":21.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":5956.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":5922.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I228_357;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I228_357;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":5898.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I228_357;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I228_357;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I228:357;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":5879.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I228_357;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I228_357;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"228:402","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 145","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":5625.0,"y":-344.0,"z":22.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"228:403","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 16","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":260.0,"x":5625.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"228:404","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":65.0,"width":65.0,"x":5675.0,"y":-272.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/228_404.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"228:405","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":86.0,"x":5756.0,"y":-258.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"}],"type":"group"},{"UUID":"229:425","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Payment Method","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":177.0,"x":5680.0,"y":-159.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Payment Method"},{"UUID":"229:427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Cash","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":5680.0,"y":-113.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Cash"},{"UUID":"229:429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Bank Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":122.0,"x":5680.0,"y":-82.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Bank Card"},{"UUID":"308:182","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 17","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":194.0,"x":5680.0,"y":176.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:183","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Drive with Padi","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":22.0,"width":122.0,"x":5697.0,"y":188.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Drive with Padi "},{"UUID":"308:184","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn money on your schedule","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":151.0,"x":5698.0,"y":209.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.23137255012989044,"g":0.3137255012989044,"b":0.501960813999176},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn money on your schedule"},{"UUID":"308:185","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":5853.0,"y":198.0,"z":29.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_185.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Make money renting your car","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":176.0,"x":5680.0,"y":244.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Make money renting your car"}]},"isVisible":true},{"UUID":"229:435","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Add card","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"229:435","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add card","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6052.0,"y":-344.0,"z":12.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"229:436","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":6277.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":6354.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":6320.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I229_436;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I229_436;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":6296.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I229_436;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I229_436;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I229:436;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":6277.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I229_436;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I229_436;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"229:438","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":49.0,"x":6078.0,"y":-29.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"229:439","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign Out","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":69.0,"x":6078.0,"y":11.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign Out"},{"UUID":"229:444","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Learn More","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":93.0,"x":6188.0,"y":252.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Learn More "},{"UUID":"229:626","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":6077.0,"y":-294.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/229_626.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"229:635","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":146.0,"x":6157.0,"y":-308.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card"},{"UUID":"229:643","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6078.0,"y":-2.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:644","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":309.0,"x":6078.0,"y":63.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:645","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":110.0,"x":6078.0,"y":128.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:646","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":109.0,"x":6277.0,"y":128.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"229:647","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 18","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":309.0,"x":6077.0,"y":175.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"229:648","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Add Card","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":6201.0,"y":187.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Add Card "},{"UUID":"229:649","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"ic:round-photo-camera","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":6364.0,"y":32.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/229_649.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"229:652","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Full name","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":79.0,"x":6078.0,"y":-50.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Full name"},{"UUID":"229:653","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Card number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":109.0,"x":6076.0,"y":8.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Card number"},{"UUID":"229:654","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Expiry Date","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":90.0,"x":6076.0,"y":73.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Expiry Date"},{"UUID":"229:655","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"CVV","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":35.0,"x":6277.0,"y":74.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"CVV"},{"UUID":"461:186","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 158","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":151.25,"width":245.0,"x":6109.0,"y":-247.0,"z":17.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/461_186.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"253:814","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"253:814","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6452.0,"y":-344.0,"z":19.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:187","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.28955078125,"x":5956.0,"y":-414.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/308_187.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:816","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6747.0,"y":-36.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"253:817","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6747.0,"y":-36.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_817.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:818","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.0,"width":12.0,"x":6761.0,"y":-22.000205993652344,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_818.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"253:820","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 431","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6477.0,"y":-33.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_820.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:821","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 434","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6477.0,"y":-294.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_821.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:822","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 432","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":40.0,"x":6535.0,"y":-33.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_822.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:823","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":20.0,"x":6487.0,"y":-23.0,"z":5.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_823.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:824","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.375,"width":18.375,"x":6546.0,"y":-22.0,"z":6.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_824.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:827","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":96.0,"x":6520.0,"y":54.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"253:828","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.25,"width":15.0,"x":6490.0,"y":-280.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_828.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:830","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 14","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":87.0,"width":95.0,"x":6646.0,"y":54.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.5}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"253:831","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Take a Ride","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":62.0,"x":6535.0,"y":95.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nTake a Ride "},{"UUID":"253:832","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Send Something","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":84.0,"x":6652.0,"y":95.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi\nSend Something "},{"UUID":"253:833","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":6543.0,"y":70.0,"z":12.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_833.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:839","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":184.3731689453125,"width":192.80224609375,"x":6551.23046875,"y":-200.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_839.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:840","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 13","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":17.807754516601562,"width":46.2998046875,"x":6671.0,"y":70.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/253_840.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:852","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":311.0,"x":6476.0,"y":203.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"253:853","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":96.0,"x":6583.0,"y":212.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation "},{"UUID":"253:854","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":6660.0,"y":-23.999988555908203,"z":17.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"253:855","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":42.084320068359375,"width":42.08447265625,"x":6660.0,"y":-23.999988555908203,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_855.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:856","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.625298500061035,"width":12.62548828125,"x":6674.7294921875,"y":-9.270495414733887,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_856.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"253:860","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":6677.0,"y":-327.0,"z":18.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":6754.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":6720.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I253_860;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I253_860;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":6696.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I253_860;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I253_860;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I253:860;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":6677.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I253_860;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I253_860;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"253:861","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":6479.0,"y":-294.0,"z":19.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_861.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:862","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 19","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":571.0,"width":336.0,"x":6465.0,"y":-128.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":25.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":25.0,"type":"rectangle","child":null},{"UUID":"253:880","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ellipse 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":125.0,"width":125.0,"x":6568.0,"y":-195.0,"z":21.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/253_880.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"253:881","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"John Doe","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":54.0,"width":171.0,"x":6545.0,"y":-64.0,"z":22.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":36.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"John Doe"},{"UUID":"253:886","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"johndoe@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":170.0,"x":6477.0,"y":34.0,"z":23.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"johndoe@gmail.com"},{"UUID":"253:887","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"+2348123567890","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":136.0,"x":6477.0,"y":95.0,"z":24.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"+2348123567890"},{"UUID":"253:888","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"FCT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":30.0,"x":6477.0,"y":217.0,"z":25.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"FCT"},{"UUID":"253:889","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Johndeo334@gmail.com","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":204.0,"x":6477.0,"y":156.0,"z":26.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Johndeo334@gmail.com"},{"UUID":"253:890","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Edit Profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":72.0,"x":6602.0,"y":-16.0,"z":27.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Edit Profile "},{"UUID":"262:891","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":65.0,"z":28.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"262:892","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 10","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":126.0,"z":29.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"262:893","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 11","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":188.0,"z":30.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null},{"UUID":"262:894","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Line 12","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1.0,"width":310.0,"x":6477.0,"y":249.0,"z":31.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":null,"fillType":null,"color":null,"thickness":null}],"borderOptions":null,"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":null,"type":"rectangle","child":null}]},"isVisible":true},{"UUID":"308:188","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"history","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"308:188","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"history","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":6852.0,"y":-344.0,"z":13.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:189","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":7077.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":7154.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":7120.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_189;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_189;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":7096.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_189;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_189;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:189;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":7077.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_189;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_189;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"308:386","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7139.0,"y":-220.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_386.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:387","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7139.0,"y":-144.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_387.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:195","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":6879.0,"y":-294.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_195.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:375","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Ride History","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":181.0,"x":6943.0,"y":-309.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Ride History"},{"UUID":"308:376","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 22","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":6877.0,"y":-230.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"308:377","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 23","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":60.0,"width":310.0,"x":6877.0,"y":-154.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":15.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":15.0,"type":"rectangle","child":null},{"UUID":"308:378","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"JABI LAKE","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":78.0,"x":6910.0,"y":-228.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"JABI LAKE "},{"UUID":"308:379","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"MAITAMA","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":77.0,"x":6911.0,"y":-150.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"MAITAMA "},{"UUID":"308:380","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 7:41 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":102.0,"x":6911.0,"y":-209.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 7:41 AM "},{"UUID":"308:381","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"27/7/2021, 8:58 PM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":106.0,"x":6911.0,"y":-131.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"27/7/2021, 8:58 PM "},{"UUID":"308:382","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"DELIVERY COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":123.0,"x":6911.0,"y":-194.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"DELIVERY COMPLETED "},{"UUID":"308:383","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":97.0,"x":6911.0,"y":-116.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED "},{"UUID":"308:388","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7144.0,"y":-131.0,"z":13.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_388.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:390","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.08740234375,"x":7145.0,"y":-208.0,"z":14.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_390.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"308:391","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Support","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"308:391","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Support","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":7251.0,"y":-344.0,"z":14.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:392","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":7476.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":7553.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":7519.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_392;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_392;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":7495.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_392;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_392;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:392;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":7476.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_392;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_392;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"308:395","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":7278.0,"y":-294.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_395.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:396","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Padi Support","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":197.0,"x":7334.0,"y":-309.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Padi Support"},{"UUID":"308:413","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 24","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":7235.0,"y":-232.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:414","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 26","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7237.0,"y":-181.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:415","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 27","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7237.0,"y":-124.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:416","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 31","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7237.0,"y":-16.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:417","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 33","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":7231.0,"y":92.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:418","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 30","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":7231.0,"y":-73.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:419","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 32","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7237.0,"y":35.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:420","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 34","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":7238.0,"y":143.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:421","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Reach us: +2348136192991","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":189.0,"x":7276.0,"y":-217.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Reach us: +2348136192991"},{"UUID":"308:422","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social Media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":186.0,"x":7276.0,"y":-167.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social Media"},{"UUID":"308:423","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":144.0,"x":7276.0,"y":-111.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"308:424","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":45.0,"x":7276.0,"y":-3.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"308:425","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":100.0,"x":7276.0,"y":105.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"308:426","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":83.0,"x":7276.0,"y":-61.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"308:427","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":120.0,"x":7276.0,"y":46.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"308:428","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":229.0,"x":7276.0,"y":156.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"}]},"isVisible":true},{"UUID":"308:429","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"About","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"308:429","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":7652.0,"y":-344.0,"z":15.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"308:430","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":7877.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":7954.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":7920.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_430;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_430;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":7896.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_430;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_430;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I308:430;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":7877.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I308_430;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I308_430;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"308:431","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.09228515625,"x":7679.0,"y":-294.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/308_431.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"308:432","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"About","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":93.0,"x":7786.0,"y":-309.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"About"},{"UUID":"308:455","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 35","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":412.0,"x":7637.0,"y":-232.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:456","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 36","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7639.0,"y":-181.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:457","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 37","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":407.0,"x":7639.0,"y":-124.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:458","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 38","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7639.0,"y":-16.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:459","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 39","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":416.0,"x":7633.0,"y":88.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:460","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 40","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":413.0,"x":7633.0,"y":-73.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:461","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 41","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":410.0,"x":7639.0,"y":35.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:462","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 42","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":7640.0,"y":142.0,"z":10.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:463","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 43","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":409.0,"x":7640.0,"y":193.0,"z":11.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":0.46000000834465027,"color":{"a":1.0,"r":0.8125,"g":0.7955729365348816,"b":0.7955729365348816},"thickness":2.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"308:464","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rate Us Now","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":96.0,"x":7678.0,"y":-218.0,"z":12.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Rate Us Now"},{"UUID":"308:465","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Version 0.86","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":86.0,"x":7789.0,"y":-270.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Version 0.86"},{"UUID":"308:466","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Follow us on Social media","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":186.0,"x":7678.0,"y":-167.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Follow us on Social media"},{"UUID":"308:467","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Negotiation Feature","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":140.0,"x":7678.0,"y":-111.0,"z":15.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Negotiation Feature"},{"UUID":"308:468","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Invest","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":43.0,"x":7678.0,"y":-2.0,"z":16.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Invest"},{"UUID":"308:469","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Privacy Policy","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":100.0,"x":7677.0,"y":101.0,"z":17.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Privacy Policy"},{"UUID":"308:470","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn Money","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":29.0,"width":86.0,"x":7678.0,"y":-63.0,"z":18.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn Money"},{"UUID":"308:471","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Visit our website","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":116.0,"x":7676.0,"y":49.0,"z":19.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Visit our website"},{"UUID":"308:472","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Earn by Leanding your Vehichle","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":229.0,"x":7677.0,"y":153.0,"z":20.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Earn by Leanding your Vehichle"},{"UUID":"308:473","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Legal","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":42.0,"x":7676.0,"y":205.0,"z":21.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Legal"}]},"isVisible":true},{"UUID":"443:121","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"travel screen","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"443:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"travel screen","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":5254.0,"y":-344.0,"z":18.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"443:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1681.379638671875,"width":1697.71142578125,"x":4647.2890625,"y":-820.6085205078125,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/443_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"443:155","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":5479.0,"y":-327.0,"z":1.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":5556.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":5522.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I443_155;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I443_155;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":5498.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I443_155;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I443_155;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I443:155;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":5479.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I443_155;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I443_155;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"447:125","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":253.50001525878906,"width":82.0,"x":5326.5,"y":-190.5,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/447_125.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"447:118","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 9","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":55.2279052734375,"width":55.22802734375,"x":5382.0,"y":-219.0,"z":3.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/447_118.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"447:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 155","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":5373.0,"y":47.99999237060547,"z":4.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"447:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Oval 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.158241271972656,"width":30.158203125,"x":5373.0,"y":47.99999237060547,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/447_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"447:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"navigation","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":9.047473907470703,"width":9.04736328125,"x":5383.55517578125,"y":58.55551528930664,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/447_123.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"446:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 46","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":48.0,"width":240.0,"x":5314.0,"y":136.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.8941176533699036,"g":0.8941176533699036,"b":0.8941176533699036},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"447:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"1hrs 15 mins","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":122.0,"x":5373.0,"y":145.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"1hrs 15 mins "},{"UUID":"447:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Approximated Travel Time","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":158.0,"x":5355.0,"y":115.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":12.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Approximated Travel Time "}]},"isVisible":true},{"UUID":"450:129","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"feedback","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"450:129","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"feedback","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":8053.0,"y":-344.0,"z":16.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"459:131","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"maps","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":1176.16259765625,"width":1246.2890625,"x":7890.0,"y":-863.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":0.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/459_131.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"450:158","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 51","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":8053.0,"y":-344.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745093703269958,"g":0.6313725709915161,"b":0.19999998807907104},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"450:161","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"RIDE COMPLETED","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":30.0,"width":168.0,"x":8149.0,"y":-113.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"700","fontDescriptor":{"fontName":"Poppins","fontSize":20.0,"fontWeight":"w700","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"RIDE COMPLETED"},{"UUID":"450:162","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"How is your trip?","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":27.0,"width":150.0,"x":8163.0,"y":-32.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":18.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"How is your trip?"},{"UUID":"450:160","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":100.0,"width":100.0,"x":8183.0,"y":-220.0,"z":4.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/450_160.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"452:117","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 157","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":162.0,"x":8155.0,"y":3.0,"z":5.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"children":[{"UUID":"452:116","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 156","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":8155.0,"y":3.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/452_116.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"450:167","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":26.0,"width":26.0,"x":8155.0,"y":3.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/450_167.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"454:124","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 52","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":115.0,"width":310.0,"x":8078.0,"y":59.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"459:132","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Additional Information","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":21.0,"width":155.0,"x":8088.0,"y":68.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7686274647712708,"g":0.7686274647712708,"b":0.7686274647712708},"weight":"300","fontDescriptor":{"fontName":"Poppins","fontSize":14.0,"fontWeight":"w300","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Additional Information"},{"UUID":"459:130","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 53","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":32.0,"width":110.0,"x":8278.0,"y":215.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"459:127","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"SUBMIT","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":60.0,"x":8294.0,"y":219.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"italic","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"SUBMIT"},{"UUID":"459:128","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.6298828125,"width":10.0869140625,"x":8366.0,"y":223.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/459_128.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"454:121","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logo padi","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"454:121","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"logo padi","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":55.0,"y":-344.0,"z":20.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"454:122","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 1","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":-337.0,"y":-344.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":null,"imageReference":"images/454_122.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"454:123","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"WhatsApp_Image_2021-07-23_at_8.10 2","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":91.0,"width":200.0,"x":135.0,"y":-86.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/454_123.png","prototypeNodeUUID":null,"type":"image"}]},"isVisible":true},{"UUID":"532:490","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Setup profile","boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":null,"convert":true,"imageURI":null,"type":"screen","designNode":{"UUID":"532:490","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Setup profile","isVisible":true,"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":null,"backgroundColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":640.0,"width":360.0,"x":2454.0,"y":-344.0,"z":21.0,"type":"boundaryBox"},"isFlowHome":false,"type":"artboard","children":[{"UUID":"532:491","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Notification","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":111.0,"x":2679.0,"y":-327.0,"z":0.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"symbolID":"75:21","parameters":null,"overrideValues":[{"UUID":"75:19","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"5:18 AM","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:19","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"5:18 AM","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":34.0,"x":2756.0,"y":-327.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.11249999701976776,"g":0.1120312437415123,"b":0.1120312437415123},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":9.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"5:18 AM"},"valueName":"5:18 AM","type":"stringValue"},{"UUID":"75:3","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:3","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":12.5,"width":25.0,"x":2722.0,"y":-326.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_491;75_3.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_491;75_3.png","type":"image"},{"UUID":"75:16","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:16","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":10.5,"width":12.25,"x":2698.875,"y":-325.25,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_491;75_16.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_491;75_16.png","type":"image"},{"UUID":"75:18","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Vector","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"value":{"UUID":"I532:491;75:18","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Vector","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":11.0,"width":13.0,"x":2679.0,"y":-325.0,"z":2.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/I532_491;75_18.png","prototypeNodeUUID":null,"type":"image"},"valueName":"images/I532_491;75_18.png","type":"image"}],"sharedNodeSetID":null,"type":"shared_instance"},{"UUID":"532:492","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Set up profile","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":45.0,"width":201.0,"x":2533.0,"y":-285.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.0,"g":0.0,"b":0.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":30.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Set up profile"},{"UUID":"532:493","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":277.0,"x":2495.0,"y":-216.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:494","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":31.0,"width":277.0,"x":2495.0,"y":-216.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_494.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:495","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Your Fullname","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":116.0,"x":2509.0,"y":-213.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Your Fullname"},{"UUID":"532:496","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2713.0,"y":-209.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:497","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-161.0,"z":3.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:498","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-161.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_498.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:499","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Email","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":45.0,"x":2509.0,"y":-154.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Email"},{"UUID":"532:500","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":-150.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:501","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-105.0,"z":4.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:502","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-105.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_502.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:503","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Phone number","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":119.0,"x":2509.0,"y":-98.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Phone number"},{"UUID":"532:504","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":-94.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:505","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-49.0,"z":5.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:506","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":-49.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_506.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:507","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Address","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":66.0,"x":2509.0,"y":-42.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Address"},{"UUID":"532:508","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":-38.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:509","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Input/Text","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":7.0,"z":6.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":null,"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:510","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":40.0,"width":278.0,"x":2495.0,"y":7.0,"z":0.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_510.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:511","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"State","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":43.0,"x":2509.0,"y":14.0,"z":1.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.7414713501930237,"g":0.7414713501930237,"b":0.7414713501930237},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"State"},{"UUID":"532:512","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Show","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":19.0,"width":43.0,"x":2714.0,"y":18.0,"z":2.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.3660069406032562,"g":0.6916666626930237,"b":0.4571916460990906},"weight":"500","fontDescriptor":{"fontName":"Inter","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":1},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":true,"pinTop":false,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"type":"text","content":"Show"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:513","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up with","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":107.0,"x":2520.0,"y":179.0,"z":7.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.36054688692092896,"g":0.35303547978401184,"b":0.35303547978401184},"weight":"500","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w500","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up with"},{"UUID":"532:514","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 8","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":41.0,"width":278.0,"x":2495.0,"y":112.0,"z":8.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":10.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":10.0,"type":"rectangle","child":null},{"UUID":"532:515","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Sign up","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":61.0,"x":2603.0,"y":120.0,"z":9.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"weight":"600","fontDescriptor":{"fontName":"Poppins","fontSize":16.0,"fontWeight":"w600","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":2},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Sign up "},{"UUID":"532:516","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 5","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2683.0,"y":180.0,"z":10.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_516.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:519","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 6","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2643.0,"y":180.0,"z":11.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:520","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Rectangle 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2643.0,"y":180.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":0,"type":"rectangle","child":null},{"UUID":"532:521","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:google-gmail","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.0,"width":24.0,"x":2643.0,"y":183.0,"z":1.0,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_521.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:527","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 7","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2723.0,"y":180.0,"z":12.0,"type":"boundaryBox"},"style":null,"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:528","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Group 3","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":24.0,"width":24.0,"x":2723.0,"y":180.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":null,"imageReference":"images/532_528.png","prototypeNodeUUID":null,"type":"image"},{"UUID":"532:530","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"logos:twitter","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":18.91326904296875,"width":23.0,"x":2724.0,"y":183.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_530.png","prototypeNodeUUID":null,"type":"image"}],"type":"group"},{"UUID":"532:532","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Checkbox/Empty","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":2498.0,"y":56.0,"z":13.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"children":[{"UUID":"532:533","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"BG","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":14.0,"width":14.0,"x":2498.0,"y":56.0,"z":0.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":true,"fillType":null,"color":{"a":1.0,"r":0.22745098173618317,"g":0.6313725709915161,"b":0.20000000298023224},"thickness":1.0}],"borderOptions":{"isEnabled":true,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":4.0},"textStyle":null,"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"fixedRadius":4.0,"type":"rectangle","child":null},{"UUID":"532:534","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"Icon/Checkmark","isVisible":false,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":6.125,"width":7.199951171875,"x":2502.0,"y":60.0,"z":null,"type":"boundaryBox"},"child":null,"constraints":{"pinLeft":true,"pinRight":false,"pinTop":true,"pinBottom":false,"fixedHeight":true,"fixedWidth":true},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":1.0,"g":1.0,"b":1.0},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":null,"hasShadow":false,"type":"style"},"imageReference":"images/532_534.png","prototypeNodeUUID":null,"type":"image"}],"type":"frame","fixedRadius":null,"background":null,"autoLayoutOptions":null},{"UUID":"532:536","layoutMainAxisSizing":"INHERIT","layoutCrossAxisSizing":"INHERIT","name":"Click to accept our terms and conditions","isVisible":true,"boundaryRectangle":{"constrainProportions":false,"constraints":null,"height":15.0,"width":204.0,"x":2520.0,"y":55.0,"z":14.0,"type":"boundaryBox"},"style":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":true,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","constraints":null,"backgroundColor":null,"fills":[{"color":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"isEnabled":true}],"borders":[{"isEnabled":false,"fillType":1.0,"color":null,"thickness":1.0}],"borderOptions":{"isEnabled":false,"dashPattern":[],"lineCapStyle":0,"lineJoinStyle":"Miter","cornerRadius":0},"textStyle":{"UUID":"","layoutMainAxisSizing":null,"layoutCrossAxisSizing":null,"name":"","isVisible":false,"boundaryRectangle":null,"style":null,"prototypeNodeUUID":"","child":null,"constraints":null,"fontColor":{"a":1.0,"r":0.4000000059604645,"g":0.4000000059604645,"b":0.4000000059604645},"weight":"400","fontDescriptor":{"fontName":"Poppins","fontSize":10.0,"fontWeight":"w400","fontStyle":"normal","letterSpacing":0.0},"paragraphStyle":{"alignment":0},"type":"text_style"},"hasShadow":false,"type":"style"},"prototypeNodeUUID":null,"child":null,"constraints":{"pinLeft":false,"pinRight":false,"pinTop":false,"pinBottom":false,"fixedHeight":false,"fixedWidth":false},"type":"text","content":"Click to accept our terms and conditions"}]},"isVisible":true}],"type":"page"}],"miscPages":[],"sharedStyles":[],"type":"project"} \ No newline at end of file diff --git a/lib/main.dart b/lib/main.dart new file mode 100644 index 0000000..202509b --- /dev/null +++ b/lib/main.dart @@ -0,0 +1,115 @@ +import 'package:flutter/material.dart'; + +void main() { + runApp(const MyApp()); +} + +class MyApp extends StatelessWidget { + const MyApp({Key? key}) : super(key: key); + + // This widget is the root of your application. + @override + Widget build(BuildContext context) { + return MaterialApp( + title: 'Flutter Demo', + theme: ThemeData( + // This is the theme of your application. + // + // Try running your application with "flutter run". You'll see the + // application has a blue toolbar. Then, without quitting the app, try + // changing the primarySwatch below to Colors.green and then invoke + // "hot reload" (press "r" in the console where you ran "flutter run", + // or simply save your changes to "hot reload" in a Flutter IDE). + // Notice that the counter didn't reset back to zero; the application + // is not restarted. + primarySwatch: Colors.blue, + ), + home: const MyHomePage(title: 'Flutter Demo Home Page'), + ); + } +} + +class MyHomePage extends StatefulWidget { + const MyHomePage({Key? key, required this.title}) : super(key: key); + + // This widget is the home page of your application. It is stateful, meaning + // that it has a State object (defined below) that contains fields that affect + // how it looks. + + // This class is the configuration for the state. It holds the values (in this + // case the title) provided by the parent (in this case the App widget) and + // used by the build method of the State. Fields in a Widget subclass are + // always marked "final". + + final String title; + + @override + State createState() => _MyHomePageState(); +} + +class _MyHomePageState extends State { + int _counter = 0; + + void _incrementCounter() { + setState(() { + // This call to setState tells the Flutter framework that something has + // changed in this State, which causes it to rerun the build method below + // so that the display can reflect the updated values. If we changed + // _counter without calling setState(), then the build method would not be + // called again, and so nothing would appear to happen. + _counter++; + }); + } + + @override + Widget build(BuildContext context) { + // This method is rerun every time setState is called, for instance as done + // by the _incrementCounter method above. + // + // The Flutter framework has been optimized to make rerunning build methods + // fast, so that you can just rebuild anything that needs updating rather + // than having to individually change instances of widgets. + return Scaffold( + appBar: AppBar( + // Here we take the value from the MyHomePage object that was created by + // the App.build method, and use it to set our appbar title. + title: Text(widget.title), + ), + body: Center( + // Center is a layout widget. It takes a single child and positions it + // in the middle of the parent. + child: Column( + // Column is also a layout widget. It takes a list of children and + // arranges them vertically. By default, it sizes itself to fit its + // children horizontally, and tries to be as tall as its parent. + // + // Invoke "debug painting" (press "p" in the console, choose the + // "Toggle Debug Paint" action from the Flutter Inspector in Android + // Studio, or the "Toggle Debug Paint" command in Visual Studio Code) + // to see the wireframe for each widget. + // + // Column has various properties to control how it sizes itself and + // how it positions its children. Here we use mainAxisAlignment to + // center the children vertically; the main axis here is the vertical + // axis because Columns are vertical (the cross axis would be + // horizontal). + mainAxisAlignment: MainAxisAlignment.center, + children: [ + const Text( + 'You have pushed the button this many times:', + ), + Text( + '$_counter', + style: Theme.of(context).textTheme.headline4, + ), + ], + ), + ), + floatingActionButton: FloatingActionButton( + onPressed: _incrementCounter, + tooltip: 'Increment', + child: const Icon(Icons.add), + ), // This trailing comma makes auto-formatting nicer for build methods. + ); + } +} diff --git a/nu.iml b/nu.iml new file mode 100644 index 0000000..e5c8371 --- /dev/null +++ b/nu.iml @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/pubspec.lock b/pubspec.lock new file mode 100644 index 0000000..306911b --- /dev/null +++ b/pubspec.lock @@ -0,0 +1,167 @@ +# Generated by pub +# See https://dart.dev/tools/pub/glossary#lockfile +packages: + async: + dependency: transitive + description: + name: async + url: "https://pub.dartlang.org" + source: hosted + version: "2.8.2" + boolean_selector: + dependency: transitive + description: + name: boolean_selector + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + characters: + dependency: transitive + description: + name: characters + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + charcode: + dependency: transitive + description: + name: charcode + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.1" + clock: + dependency: transitive + description: + name: clock + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + collection: + dependency: transitive + description: + name: collection + url: "https://pub.dartlang.org" + source: hosted + version: "1.15.0" + cupertino_icons: + dependency: "direct main" + description: + name: cupertino_icons + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + fake_async: + dependency: transitive + description: + name: fake_async + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + flutter: + dependency: "direct main" + description: flutter + source: sdk + version: "0.0.0" + flutter_lints: + dependency: "direct dev" + description: + name: flutter_lints + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.4" + flutter_test: + dependency: "direct dev" + description: flutter + source: sdk + version: "0.0.0" + lints: + dependency: transitive + description: + name: lints + url: "https://pub.dartlang.org" + source: hosted + version: "1.0.1" + matcher: + dependency: transitive + description: + name: matcher + url: "https://pub.dartlang.org" + source: hosted + version: "0.12.11" + meta: + dependency: transitive + description: + name: meta + url: "https://pub.dartlang.org" + source: hosted + version: "1.7.0" + path: + dependency: transitive + description: + name: path + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.0" + sky_engine: + dependency: transitive + description: flutter + source: sdk + version: "0.0.99" + source_span: + dependency: transitive + description: + name: source_span + url: "https://pub.dartlang.org" + source: hosted + version: "1.8.1" + stack_trace: + dependency: transitive + description: + name: stack_trace + url: "https://pub.dartlang.org" + source: hosted + version: "1.10.0" + stream_channel: + dependency: transitive + description: + name: stream_channel + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.0" + string_scanner: + dependency: transitive + description: + name: string_scanner + url: "https://pub.dartlang.org" + source: hosted + version: "1.1.0" + term_glyph: + dependency: transitive + description: + name: term_glyph + url: "https://pub.dartlang.org" + source: hosted + version: "1.2.0" + test_api: + dependency: transitive + description: + name: test_api + url: "https://pub.dartlang.org" + source: hosted + version: "0.4.3" + typed_data: + dependency: transitive + description: + name: typed_data + url: "https://pub.dartlang.org" + source: hosted + version: "1.3.0" + vector_math: + dependency: transitive + description: + name: vector_math + url: "https://pub.dartlang.org" + source: hosted + version: "2.1.1" +sdks: + dart: ">=2.15.1 <3.0.0" diff --git a/pubspec.yaml b/pubspec.yaml new file mode 100644 index 0000000..1437cf7 --- /dev/null +++ b/pubspec.yaml @@ -0,0 +1,89 @@ +name: nu +description: A new Flutter project. + +# The following line prevents the package from being accidentally published to +# pub.dev using `flutter pub publish`. This is preferred for private packages. +publish_to: 'none' # Remove this line if you wish to publish to pub.dev + +# The following defines the version and build number for your application. +# A version number is three numbers separated by dots, like 1.2.43 +# followed by an optional build number separated by a +. +# Both the version and the builder number may be overridden in flutter +# build by specifying --build-name and --build-number, respectively. +# In Android, build-name is used as versionName while build-number used as versionCode. +# Read more about Android versioning at https://developer.android.com/studio/publish/versioning +# In iOS, build-name is used as CFBundleShortVersionString while build-number used as CFBundleVersion. +# Read more about iOS versioning at +# https://developer.apple.com/library/archive/documentation/General/Reference/InfoPlistKeyReference/Articles/CoreFoundationKeys.html +version: 1.0.0+1 + +environment: + sdk: ">=2.15.1 <3.0.0" + +# Dependencies specify other packages that your package needs in order to work. +# To automatically upgrade your package dependencies to the latest versions +# consider running `flutter pub upgrade --major-versions`. Alternatively, +# dependencies can be manually updated by changing the version numbers below to +# the latest version available on pub.dev. To see which dependencies have newer +# versions available, run `flutter pub outdated`. +dependencies: + flutter: + sdk: flutter + + + # The following adds the Cupertino Icons font to your application. + # Use with the CupertinoIcons class for iOS style icons. + cupertino_icons: ^1.0.2 + +dev_dependencies: + flutter_test: + sdk: flutter + + # The "flutter_lints" package below contains a set of recommended lints to + # encourage good coding practices. The lint set provided by the package is + # activated in the `analysis_options.yaml` file located at the root of your + # package. See that file for information about deactivating specific lint + # rules and activating additional ones. + flutter_lints: ^1.0.0 + +# For information on the generic Dart part of this file, see the +# following page: https://dart.dev/tools/pub/pubspec + +# The following section is specific to Flutter. +flutter: + + # The following line ensures that the Material Icons font is + # included with your application, so that you can use the icons in + # the material Icons class. + uses-material-design: true + + # To add assets to your application, add an assets section, like this: + # assets: + # - images/a_dot_burr.jpeg + # - images/a_dot_ham.jpeg + + # An image asset can refer to one or more resolution-specific "variants", see + # https://flutter.dev/assets-and-images/#resolution-aware. + + # For details regarding adding assets from package dependencies, see + # https://flutter.dev/assets-and-images/#from-packages + + # To add custom fonts to your application, add a fonts section here, + # in this "flutter" section. Each entry in this list should have a + # "family" key with the font family name, and a "fonts" key with a + # list giving the asset and other descriptors for the font. For + # example: + # fonts: + # - family: Schyler + # fonts: + # - asset: fonts/Schyler-Regular.ttf + # - asset: fonts/Schyler-Italic.ttf + # style: italic + # - family: Trajan Pro + # fonts: + # - asset: fonts/TrajanPro.ttf + # - asset: fonts/TrajanPro_Bold.ttf + # weight: 700 + # + # For details regarding fonts from package dependencies, + # see https://flutter.dev/custom-fonts/#from-packages diff --git a/test/widget_test.dart b/test/widget_test.dart new file mode 100644 index 0000000..e1f4ed5 --- /dev/null +++ b/test/widget_test.dart @@ -0,0 +1,30 @@ +// This is a basic Flutter widget test. +// +// To perform an interaction with a widget in your test, use the WidgetTester +// utility that Flutter provides. For example, you can send tap and scroll +// gestures. You can also use WidgetTester to find child widgets in the widget +// tree, read text, and verify that the values of widget properties are correct. + +import 'package:flutter/material.dart'; +import 'package:flutter_test/flutter_test.dart'; + +import 'package:nu/main.dart'; + +void main() { + testWidgets('Counter increments smoke test', (WidgetTester tester) async { + // Build our app and trigger a frame. + await tester.pumpWidget(const MyApp()); + + // Verify that our counter starts at 0. + expect(find.text('0'), findsOneWidget); + expect(find.text('1'), findsNothing); + + // Tap the '+' icon and trigger a frame. + await tester.tap(find.byIcon(Icons.add)); + await tester.pump(); + + // Verify that our counter has incremented. + expect(find.text('0'), findsNothing); + expect(find.text('1'), findsOneWidget); + }); +} diff --git a/web/favicon.png b/web/favicon.png new file mode 100644 index 0000000..8aaa46a Binary files /dev/null and b/web/favicon.png differ diff --git a/web/icons/Icon-192.png b/web/icons/Icon-192.png new file mode 100644 index 0000000..b749bfe Binary files /dev/null and b/web/icons/Icon-192.png differ diff --git a/web/icons/Icon-512.png b/web/icons/Icon-512.png new file mode 100644 index 0000000..88cfd48 Binary files /dev/null and b/web/icons/Icon-512.png differ diff --git a/web/icons/Icon-maskable-192.png b/web/icons/Icon-maskable-192.png new file mode 100644 index 0000000..eb9b4d7 Binary files /dev/null and b/web/icons/Icon-maskable-192.png differ diff --git a/web/icons/Icon-maskable-512.png b/web/icons/Icon-maskable-512.png new file mode 100644 index 0000000..d69c566 Binary files /dev/null and b/web/icons/Icon-maskable-512.png differ diff --git a/web/index.html b/web/index.html new file mode 100644 index 0000000..5ca4830 --- /dev/null +++ b/web/index.html @@ -0,0 +1,104 @@ + + + + + + + + + + + + + + + + + + + + nu + + + + + + + diff --git a/web/manifest.json b/web/manifest.json new file mode 100644 index 0000000..fe27fc0 --- /dev/null +++ b/web/manifest.json @@ -0,0 +1,35 @@ +{ + "name": "nu", + "short_name": "nu", + "start_url": ".", + "display": "standalone", + "background_color": "#0175C2", + "theme_color": "#0175C2", + "description": "A new Flutter project.", + "orientation": "portrait-primary", + "prefer_related_applications": false, + "icons": [ + { + "src": "icons/Icon-192.png", + "sizes": "192x192", + "type": "image/png" + }, + { + "src": "icons/Icon-512.png", + "sizes": "512x512", + "type": "image/png" + }, + { + "src": "icons/Icon-maskable-192.png", + "sizes": "192x192", + "type": "image/png", + "purpose": "maskable" + }, + { + "src": "icons/Icon-maskable-512.png", + "sizes": "512x512", + "type": "image/png", + "purpose": "maskable" + } + ] +}